diff options
author | Matthew Landauer <matthew@openaustralia.org> | 2013-03-06 13:51:32 +1100 |
---|---|---|
committer | Matthew Landauer <matthew@openaustralia.org> | 2013-03-06 13:51:32 +1100 |
commit | 20ec9b49f3407223b7cbcb25a636ba44a4b6967c (patch) | |
tree | 916da077a095f0f72758c2dc1e3eb41038e31e81 | |
parent | 32a4d1295ce9772b5a482be7afbb5fa29c2b2ba1 (diff) |
Remove deleted action from list of actions
-rw-r--r-- | app/controllers/request_controller.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/request_controller.rb b/app/controllers/request_controller.rb index dbfb12fe1..aa646197f 100644 --- a/app/controllers/request_controller.rb +++ b/app/controllers/request_controller.rb @@ -9,8 +9,8 @@ require 'zip/zip' require 'open-uri' class RequestController < ApplicationController - before_filter :check_read_only, :only => [ :new, :show_response, :describe_state, :describe_state_requires_admin, :upload_response ] - protect_from_forgery :only => [ :new, :show_response, :describe_state, :describe_state_requires_admin, :upload_response ] # See ActionController::RequestForgeryProtection for details + before_filter :check_read_only, :only => [ :new, :show_response, :describe_state, :upload_response ] + protect_from_forgery :only => [ :new, :show_response, :describe_state, :upload_response ] # See ActionController::RequestForgeryProtection for details MAX_RESULTS = 500 PER_PAGE = 25 |