diff options
-rw-r--r-- | app/controllers/api_controller.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/controllers/api_controller.rb b/app/controllers/api_controller.rb index 538dade3f..205ad1c3b 100644 --- a/app/controllers/api_controller.rb +++ b/app/controllers/api_controller.rb @@ -1,10 +1,6 @@ class ApiController < ApplicationController before_filter :check_api_key - def create_request - - end - def show_request @request = InfoRequest.find(params[:id]) raise PermissionDenied if @request.public_body_id != @public_body.id @@ -29,6 +25,10 @@ class ApiController < ApplicationController render :json => @request_data end + def create_request + + end + def add_correspondence end |