diff options
author | francis <francis> | 2007-09-03 09:39:20 +0000 |
---|---|---|
committer | francis <francis> | 2007-09-03 09:39:20 +0000 |
commit | ffdbf0562b5e93dfa4d60ca9e4817b1acf1806b0 (patch) | |
tree | 06de6fd3130eaf86af1951ab46f50f4a273d2ad2 /app/controllers/admin_controller.rb | |
parent | 8109fa8aed8b9d1a6ca8cac11256558a0cf4832f (diff) |
Make /admin URL work, and give link through to public body editor.
Layout for admin pages.
Diffstat (limited to 'app/controllers/admin_controller.rb')
-rw-r--r-- | app/controllers/admin_controller.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app/controllers/admin_controller.rb b/app/controllers/admin_controller.rb new file mode 100644 index 000000000..7bb60b036 --- /dev/null +++ b/app/controllers/admin_controller.rb @@ -0,0 +1,12 @@ +# app/controllers/admin_public_body_controller.rb: +# Controller for admin interface. +# +# Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved. +# Email: francis@mysociety.org; WWW: http://www.mysociety.org/ +# +# $Id: admin_controller.rb,v 1.1 2007-09-03 09:39:20 francis Exp $ + +class AdminController < ApplicationController + layout "admin" +end + |