12 lines
249 B
Ruby
12 lines
249 B
Ruby
# frozen_string_literal: true
|
|
|
|
Rails.application.configure do
|
|
config.x.search_scope = case
|
|
when ENV['SEARCH_SCOPE'] == 'public'
|
|
:public
|
|
when ENV['SEARCH_SCOPE'] == 'public_or_unlisted'
|
|
:public_or_unlisted
|
|
else
|
|
:classic
|
|
end
|
|
end
|