diff options
author | Azul <azul@leap.se> | 2014-04-04 15:40:22 +0200 |
---|---|---|
committer | Azul <azul@leap.se> | 2014-04-04 15:40:22 +0200 |
commit | aeb5d8cf8dc6329906f14bf4595a229e002691c1 (patch) | |
tree | 000f3137aeb711a4008dd58f930f9c6b7d9d0e65 /users/app/controllers/controller_extension/authentication.rb | |
parent | 7b4f9ad334ec702449fdc683ea8fc312e06b2bd9 (diff) |
redirect home when logged in visits /signup (#5446)
Diffstat (limited to 'users/app/controllers/controller_extension/authentication.rb')
-rw-r--r-- | users/app/controllers/controller_extension/authentication.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/users/app/controllers/controller_extension/authentication.rb b/users/app/controllers/controller_extension/authentication.rb index e83d6b2..03d3989 100644 --- a/users/app/controllers/controller_extension/authentication.rb +++ b/users/app/controllers/controller_extension/authentication.rb @@ -19,6 +19,13 @@ module ControllerExtension::Authentication access_denied unless logged_in? end + # some actions only make sense if you are not logged in yet. + # (login, signup). If a user tries to perform these they will + # be redirected to their dashboard. + def redirect_if_logged_in + redirect_to home_url if logged_in? + end + def access_denied respond_to do |format| format.html do |