mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-02-18 09:24:47 +00:00
12 lines
222 B
Ruby
12 lines
222 B
Ruby
# frozen_string_literal: true
|
|
|
|
module DiscourseSubscriptions
|
|
module Stripe
|
|
extend ActiveSupport::Concern
|
|
|
|
def set_api_key
|
|
::Stripe.api_key = SiteSetting.discourse_subscriptions_secret_key
|
|
end
|
|
end
|
|
end
|