Avoid duplicate initialisation warnings
This commit is contained in:
parent
6bbe6802d0
commit
23f73d0be0
1 changed files with 10 additions and 8 deletions
|
@ -16,14 +16,16 @@ end
|
|||
# rubocop:enable Rails/Output, Rails/Exit
|
||||
|
||||
# Allowed status values
|
||||
ALLOWED_STATUS = [
|
||||
"online", # online and operating normally
|
||||
"api_readonly", # site online but API in read-only mode
|
||||
"api_offline", # site online but API offline
|
||||
"database_readonly", # database and site in read-only mode
|
||||
"database_offline", # database offline with site in emergency mode
|
||||
"gpx_offline" # gpx storage offline
|
||||
].freeze
|
||||
unless Object.const_defined?(:ALLOWED_STATUS)
|
||||
ALLOWED_STATUS = [
|
||||
"online", # online and operating normally
|
||||
"api_readonly", # site online but API in read-only mode
|
||||
"api_offline", # site online but API offline
|
||||
"database_readonly", # database and site in read-only mode
|
||||
"database_offline", # database offline with site in emergency mode
|
||||
"gpx_offline" # gpx storage offline
|
||||
].freeze
|
||||
end
|
||||
|
||||
Config.setup do |config|
|
||||
# Name of the constant exposing loaded settings
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue