Skip to content

Commit

Permalink
change of basic default fallback pw (#575)
Browse files Browse the repository at this point in the history
  • Loading branch information
cziaarm authored Nov 5, 2024
1 parent 838d077 commit f81a8ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/controllers/application_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f81a8ae

Please sign in to comment.