Sha256: 3eab7e7a45195acbc635499c551e4a8546437fcdd278e64837992ed453bdb416

Contents?: true

Size: 277 Bytes

Versions: 6

Compression:

Stored size: 277 Bytes

Contents

module Presenters
  class AnsibleRolePresenter
    attr_reader :ansible_role, :inherited

    delegate :id, :name, :association, :to => :ansible_role

    def initialize(ansible_role, inherited)
      @ansible_role = ansible_role
      @inherited = inherited
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
foreman_ansible-7.0.4 app/graphql/presenters/ansible_role_presenter.rb
foreman_ansible-7.1.0 app/graphql/presenters/ansible_role_presenter.rb
foreman_ansible-7.0.3 app/graphql/presenters/ansible_role_presenter.rb
foreman_ansible-7.0.2 app/graphql/presenters/ansible_role_presenter.rb
foreman_ansible-7.0.1 app/graphql/presenters/ansible_role_presenter.rb
foreman_ansible-7.0.0 app/graphql/presenters/ansible_role_presenter.rb