12 lines
216 B
Ruby
Raw Normal View History

2019-09-24 20:44:51 +10:00
# frozen_string_literal: true
2019-12-04 11:23:45 +11:00
module DiscourseSubscriptions
2019-09-24 20:44:51 +10:00
module Stripe
extend ActiveSupport::Concern
def set_api_key
2019-09-25 11:18:11 +10:00
::Stripe.api_key = SiteSetting.discourse_patrons_secret_key
2019-09-24 20:44:51 +10:00
end
end
end