stefan-kolb/nucleus

View on GitHub
lib/nucleus_api/api/entities/collections/environment_variables.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Nucleus
  module API
    module Models
      class EnvironmentVariables < CollectionEntity
        # The name of the entity to be used
        def self.entity_name
          'EnvironmentVariableList'
        end
        item_collection('env_vars', 'environment variables', Models::EnvironmentVariable)
        basic_links('endpoints/%{endpoint_id}/applications/%{application_id}', 'vars')
      end
    end
  end
end