blob: 36d31d2f5a965e6da41cee9864aa6477cf127474 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# controllers/frontpage_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: frontpage_controller.rb,v 1.4 2007-08-04 11:10:25 francis Exp $
class FrontpageController < ApplicationController
def index
respond_to do |format|
format.html
end
end
#before_filter :check_authentication, :except => [:signin]
end
|