mirror of
https://github.com/internetee/registry.git
synced 2025-06-07 21:25:39 +02:00
9 lines
182 B
Ruby
9 lines
182 B
Ruby
module PaymentOrders
|
|
class SystemPayment < PaymentOrder
|
|
CONFIG_NAMESPACE = 'system_payment'.freeze
|
|
|
|
def self.config_namespace_name
|
|
CONFIG_NAMESPACE
|
|
end
|
|
end
|
|
end
|