mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-02 13:24:20 +01:00
17 lines
321 B
Ruby
17 lines
321 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require 'payment/item'
|
||
|
|
||
|
# Stripe payement gateway
|
||
|
module Stripe; end
|
||
|
|
||
|
## generic wrapper around Stripe classes
|
||
|
class Stripe::Item < Payment::Item
|
||
|
attr_accessor :id
|
||
|
|
||
|
def retrieve(id)
|
||
|
@id ||= id
|
||
|
klass.constantize.retrieve(@id, api_key: Setting.get('stripe_secret_key'))
|
||
|
end
|
||
|
end
|