end
def authorize(realm = "Web Password", errormessage = "Couldn't authenticate you")
- # make the @user object from any auth sources we have
+ # make the current_user object from any auth sources we have
setup_user_auth
# handle authenticate pass/fail
end
##
- # ensure that there is a "this_user" instance variable
- def lookup_this_user
- render_unknown_user params[:display_name] unless @this_user = User.active.find_by(:display_name => params[:display_name])
+ # ensure that there is a "user" instance variable
+ def lookup_user
+ render_unknown_user params[:display_name] unless @user = User.active.find_by(:display_name => params[:display_name])
end
##
def map_layout
append_content_security_policy_directives(
- :child_src => %w[127.0.0.1:8111],
+ :child_src => %w[http://127.0.0.1:8111],
:connect_src => %w[nominatim.openstreetmap.org overpass-api.de router.project-osrm.org],
:form_action => %w[render.openstreetmap.org],
:script_src => %w[graphhopper.com open.mapquestapi.com],