X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/318c49002aea966128a9d37ab29e601a104d79bb..73872ccc5bb6b80a6049b44b0113085a9c2b6934:/services/api/config/application.rb diff --git a/services/api/config/application.rb b/services/api/config/application.rb index 0d6aa1d9f9..c09a8e5e47 100644 --- a/services/api/config/application.rb +++ b/services/api/config/application.rb @@ -1,3 +1,7 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + require File.expand_path('../boot', __FILE__) require 'rails/all' @@ -55,6 +59,8 @@ module Server config.active_support.test_order = :sorted + config.action_dispatch.perform_deep_munge = false + I18n.enforce_available_locales = false # Before using the filesystem backend for Rails.cache, check @@ -72,6 +78,9 @@ module Server STDERR.puts("Defaulting to memory cache, " + "because #{default_cache_path} #{why}") config.cache_store = :memory_store + else + require Rails.root.join('lib/safer_file_store') + config.cache_store = ::SaferFileStore.new(default_cache_path) end end end