blob: b9af922a0b8a2af20f93df8589e3feb488f68be4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# controllers/index_controller.rb:
# Main page of site.
#
# 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 $
class IndexController < ApplicationController
def index
respond_to do |format|
format.html
end
end
#before_filter :check_authentication, :except => [:signin]
end
|