8f39c015ea
This is the first step of a multi-step SaaS engine extraction. Looking ahead to an open source release, we need to make sure that local authentication is treated as an "official" option, and not just a hack I added for Kevin to do load testing outside our DC. So this PR gets to green, and adds a CI step in "local authentication" mode. This all probably feels a little hacky to you, Reader, but the goal of this change is to ease the next step, which will be extracting the 37id and Queenbee integrations into a proprietary "SaaS mode" engine. In service of that goal, this commit simply wraps all of the dependent code and tests with a conditional check on `config.x.local_authentication`.
15 lines
560 B
Ruby
15 lines
560 B
Ruby
unless Rails.application.config.x.local_authentication
|
|
Queenbee.host_app = Fizzy
|
|
|
|
Rails.application.config.to_prepare do
|
|
Queenbee::Subscription.short_names = Subscription::SHORT_NAMES
|
|
Queenbee::ApiToken.token = Rails.application.credentials.dig(:queenbee_api_token)
|
|
|
|
Subscription::SHORT_NAMES.each do |short_name|
|
|
const_name = "#{short_name}Subscription"
|
|
::Object.send(:remove_const, const_name) if ::Object.const_defined?(const_name)
|
|
::Object.const_set const_name, Subscription.const_get(short_name, false)
|
|
end
|
|
end
|
|
end
|