diff options
author | francis <francis> | 2007-10-09 17:29:43 +0000 |
---|---|---|
committer | francis <francis> | 2007-10-09 17:29:43 +0000 |
commit | c3ade0115f44cfe055d7450cef07954de9668440 (patch) | |
tree | b83d8cecc8f3bc2bb6bc0959d6e152fb4d2c1df5 /app/controllers/index_controller.rb | |
parent | 07374f66143dbc4630a90804ab7ff38cdfc31866 (diff) |
Tweak formatting of controllers.
Add explicit "private" to encourage adding of non-action functions there.
Diffstat (limited to 'app/controllers/index_controller.rb')
-rw-r--r-- | app/controllers/index_controller.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/controllers/index_controller.rb b/app/controllers/index_controller.rb index b9af922a0..e15e72fdd 100644 --- a/app/controllers/index_controller.rb +++ b/app/controllers/index_controller.rb @@ -4,7 +4,7 @@ # Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved. # Email: francis@mysociety.org; WWW: http://www.mysociety.org/ # -# $Id: index_controller.rb,v 1.1 2007-10-08 15:02:01 francis Exp $ +# $Id: index_controller.rb,v 1.2 2007-10-09 17:29:43 francis Exp $ class IndexController < ApplicationController def index @@ -13,6 +13,7 @@ class IndexController < ApplicationController end end - #before_filter :check_authentication, :except => [:signin] + private + end |