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
|