diff options
author | Azul <azul@leap.se> | 2013-12-13 14:27:15 +0100 |
---|---|---|
committer | Azul <azul@leap.se> | 2013-12-13 14:44:04 +0100 |
commit | 496817bd512fe43c4cb80cc49a19dae3ed3eb165 (patch) | |
tree | b8921ca66b47ac071e974659d9eab5aa907a89ee /users/app/controllers/overviews_controller.rb | |
parent | e1d9d92d4afe32a6b4c267d9ffb7d8a40c4871e1 (diff) |
refactor: remove Overview controller - we can use Users#show
we were only using Users#show to redirect to the edit action. So I replaced that with the overview and we have no more use for the extra controller.
This also simplifies linking to the users in question a lot.
Diffstat (limited to 'users/app/controllers/overviews_controller.rb')
-rw-r--r-- | users/app/controllers/overviews_controller.rb | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/users/app/controllers/overviews_controller.rb b/users/app/controllers/overviews_controller.rb deleted file mode 100644 index 52ce267..0000000 --- a/users/app/controllers/overviews_controller.rb +++ /dev/null @@ -1,9 +0,0 @@ -class OverviewsController < UsersBaseController - - before_filter :authorize - before_filter :fetch_user - - def show - end - -end |