diff options
author | David Cabo <david@calibea.com> | 2011-08-11 03:50:10 +0200 |
---|---|---|
committer | David Cabo <david@calibea.com> | 2011-08-11 03:50:10 +0200 |
commit | a63e598b9e0ddfa7ac695b1be41aaace6c0eb628 (patch) | |
tree | ac5ec3bca43d8194445292190c74124f1a0a8429 /app/controllers/application_controller.rb | |
parent | 07933c860cea05df05acde5b5e321e2d78911f60 (diff) |
Move log-in point to before Preview and fix modal sign-in and sign-up redirects
Diffstat (limited to 'app/controllers/application_controller.rb')
-rw-r--r-- | app/controllers/application_controller.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 5f18be2e5..4e6ad5efb 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -192,7 +192,9 @@ class ApplicationController < ActionController::Base post_redirect = PostRedirect.new(:uri => request.request_uri, :post_params => params, :reason_params => reason_params) post_redirect.save! - redirect_to signin_url(:token => post_redirect.token) + # 'modal' controls whether the sign-in form will be displayed in the typical full-blown + # page or on its own, useful for pop-ups + redirect_to signin_url(:token => post_redirect.token, :modal => params[:modal]) return false end return true |