You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
249 B
13 lines
249 B
2 years ago
|
# 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
|