From b3895a4f3b1aca232f2851efda46b087b7fcf6d8 Mon Sep 17 00:00:00 2001 From: Jared Cosulich Date: Fri, 13 Sep 2019 08:27:54 -0400 Subject: [PATCH] remove password from Boston --- 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 111c0e7c..fe822b17 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