# rubocop:enable Rails/Output, Rails/Exit
# Allowed status values
-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
required(:api_timeout).filled(:int?)
required(:imagery_blacklist).maybe(:array?)
required(:status).filled(:str?, :included_in? => ALLOWED_STATUS)
- required(:storage_service).filled(:str?)
+ required(:avatar_storage).filled(:str?)
+ required(:trace_file_storage).filled(:str?)
+ required(:trace_image_storage).filled(:str?)
+ required(:trace_icon_storage).filled(:str?)
end
end