remove password from Boston

This commit is contained in:
Jared Cosulich 2019-09-13 08:27:54 -04:00
parent 77a1dc1a3a
commit b3895a4f3b

View file

@ -10,7 +10,7 @@ class ApplicationController < ActionController::Base
end end
def authenticate(username, password) def authenticate(username, password)
# return true if username == "boston" return true if username == "boston"
authenticate_or_request_with_http_basic do |u, p| authenticate_or_request_with_http_basic do |u, p|
u == username && p == password u == username && p == password
end end