Class: SpreeAdyen::ApplicationInfoPresenter

Inherits:
Object
  • Object
show all
Defined in:
app/presenters/spree_adyen/application_info_presenter.rb

Instance Method Summary collapse

Instance Method Details

#to_hObject



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'app/presenters/spree_adyen/application_info_presenter.rb', line 5

def to_h
  {
    applicationInfo: {
      externalPlatform: {
        name: 'Spree Commerce',
        version: Spree.version,
        integrator: 'Vendo Sp. z o.o.'
      },
      merchantApplication: {
        name: defined?(SpreeEnterprise) ? 'Enterprise Edition' : 'Community Edition',
        version: SpreeAdyen.version
      }
    }
  }
end