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/new_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/new_controller.rb')
-rw-r--r-- | app/controllers/new_controller.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/controllers/new_controller.rb b/app/controllers/new_controller.rb index 175393502..84fb0fb81 100644 --- a/app/controllers/new_controller.rb +++ b/app/controllers/new_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: new_controller.rb,v 1.2 2007-10-08 15:16:22 francis Exp $ +# $Id: new_controller.rb,v 1.3 2007-10-09 17:29:43 francis Exp $ class NewController < ApplicationController def index @@ -42,6 +42,8 @@ class NewController < ApplicationController # end end + private + end |