internetee/registry

View on GitHub
app/models/payment_orders/system_payment.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module PaymentOrders
  class SystemPayment < PaymentOrder
    CONFIG_NAMESPACE = 'system_payment'.freeze

    def self.config_namespace_name
      CONFIG_NAMESPACE
    end
  end
end