diff options
Diffstat (limited to 'app/controllers/file_request_controller.rb')
-rw-r--r-- | app/controllers/file_request_controller.rb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/app/controllers/file_request_controller.rb b/app/controllers/file_request_controller.rb new file mode 100644 index 000000000..9b0f7c403 --- /dev/null +++ b/app/controllers/file_request_controller.rb @@ -0,0 +1,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 + + |