summaryrefslogtreecommitdiff
path: root/app/controllers
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2013-07-31 15:12:59 -0700
committerelijah <elijah@riseup.net>2013-07-31 15:12:59 -0700
commit1a3fdad01d9cb2e2596281d38ce0c0f1ad4da04a (patch)
tree265a2c3393c4e6f8e2958f8739f50150e89c3d92 /app/controllers
parent21f39bf368ea1e0deb70eb918f0947fb6fbd900d (diff)
added empty 'home' layout and removed debugger from homecontroller
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/home_controller.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/home_controller.rb b/app/controllers/home_controller.rb
index 120541e..be26eb6 100644
--- a/app/controllers/home_controller.rb
+++ b/app/controllers/home_controller.rb
@@ -1,9 +1,9 @@
-
class HomeController < ApplicationController
+ layout 'home'
+
def index
if logged_in?
redirect_to user_overview_url(current_user)
end
- debugger if params[:debug]
end
end