mirror of
https://github.com/internetee/registry.git
synced 2025-06-08 13:44:47 +02:00
9 lines
180 B
Ruby
9 lines
180 B
Ruby
module PaymentOrders
|
|
class AdminPayment < PaymentOrder
|
|
CONFIG_NAMESPACE = 'admin_payment'.freeze
|
|
|
|
def self.config_namespace_name
|
|
CONFIG_NAMESPACE
|
|
end
|
|
end
|
|
end
|