aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/file_request_controller.rb
blob: 9b0f7c403b3e4eace64bdedb55929dc1d7c65a97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# app/controllers/file_request_controller.rb:
# Interface for building a new FOI request.
#
# Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved.
# Email: francis@mysociety.org; WWW: http://www.mysociety.org/
#
# $Id: file_request_controller.rb,v 1.1 2007-08-04 11:10:25 francis Exp $

class FileRequestController < ApplicationController
    def index
        respond_to do |format|
            format.html
        end
    end

    def create
        respond_to do |format|
            format.html
        end
    end


end