From a8fb22ee95da63b868ad954b8757ba45d42031a5 Mon Sep 17 00:00:00 2001 From: Connor Turland Date: Thu, 23 Oct 2014 20:31:57 -0400 Subject: [PATCH] fix for allowing sign ups, and for about lightbox overflow --- app/assets/stylesheets/application.css | 2 +- app/controllers/application_controller.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index 4d001d8f..afd3f723 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -2069,7 +2069,7 @@ and it won't be important on password protected instances */ display: inline-block; } -#colophon { +#colophon, #about { overflow-y: scroll; height:434px; } diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index fde10c0a..c40854db 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -36,7 +36,7 @@ private path = request.env["PATH_INFO"] - accessible_urls = ["/", new_user_registration_path, new_user_session_path, new_user_password_path, edit_user_password_path] + accessible_urls = ["/", new_user_registration_path, new_user_session_path, user_registration_path, new_user_password_path, edit_user_password_path] unless accessible_urls.include?(path) store_location_for(:user, path) and redirect_to root_url, notice: "You must be logged in."