diff options
author | Azul <azul@leap.se> | 2014-07-18 12:22:56 +0200 |
---|---|---|
committer | Azul <azul@leap.se> | 2014-07-18 12:22:56 +0200 |
commit | 11d1efaef622335fe6d45917ce0b50a02e4a24a1 (patch) | |
tree | 650d0dff3c8f4ee77efdd237087df7c10b60cf8c /app/controllers | |
parent | bbd41c9bfd2cb88a88d7436dd58a8b46a5d10cf1 (diff) |
Allow fetching configs if anonymous EIP access is allowed
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/v1/configs_controller.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/controllers/v1/configs_controller.rb b/app/controllers/v1/configs_controller.rb index accdf5a..9c01605 100644 --- a/app/controllers/v1/configs_controller.rb +++ b/app/controllers/v1/configs_controller.rb @@ -1,7 +1,7 @@ class V1::ConfigsController < ApiController include ControllerExtension::JsonFile - before_filter :require_login + before_filter :require_login, :unless => :anonymous_certs_allowed? before_filter :sanitize_filename, only: :show before_filter :fetch_file, only: :show @@ -21,6 +21,10 @@ class V1::ConfigsController < ApiController protected + def anonymous_certs_allowed? + APP_CONFIG[:allow_anonymous_certs] + end + def service_paths Hash[SERVICES.map{|k,v| [k,"/1/configs/#{v}"] } ] end |