From 77a1dc1a3a24f979cc1b0a56f236dd1cf0e3411e Mon Sep 17 00:00:00 2001 From: Jared Cosulich Date: Wed, 14 Aug 2019 16:00:30 -0400 Subject: [PATCH] add password back to bps --- 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 fe822b17..111c0e7c 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -10,7 +10,7 @@ class ApplicationController < ActionController::Base end def authenticate(username, password) - return true if username == "boston" + # return true if username == "boston" authenticate_or_request_with_http_basic do |u, p| u == username && p == password end