From e6adf71f6554aeb1dd834ba525f30d9da751e5e9 Mon Sep 17 00:00:00 2001 From: Rory McNicholl Date: Tue, 5 Nov 2024 15:37:24 +0000 Subject: [PATCH] change of basic default fallback pw --- app/controllers/application_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index a7013485..68382af6 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -56,7 +56,7 @@ def authenticate_if_needed return true if Rails.env.test? if (is_hidden || is_staging) && !is_api_or_pdf authenticate_or_request_with_http_basic do |username, password| - username == ENV.fetch("HYKU_DEMO_USER", "samvera") && password == ENV.fetch("HYKU_DEMO_PASSWORD", "hyku") + username == ENV.fetch("HYKU_DEMO_USER", "bl_demo_user") && password == ENV.fetch("HYKU_DEMO_PASSWORD", "resu_omed_lb") end end end