mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-13 23:48:55 +01:00
12 lines
216 B
Ruby
12 lines
216 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
# Provides methods for pay cart by Local
|
||
|
class Payments::LocalService
|
||
|
include Payments::PaymentConcern
|
||
|
|
||
|
def payment(order)
|
||
|
o = payment_success(order)
|
||
|
{ order: o }
|
||
|
end
|
||
|
end
|