blob: 17d1475829a65077926e23802fb3e9eb1227a132 (
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
|
# app/controllers/admin_info_request_event_controller.rb:
# Controller for FOI request event manipulation from the admin interface.
#
# Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved.
# Email: hello@mysociety.org; WWW: http://www.mysociety.org/
class AdminInfoRequestEventController < AdminController
# used so due dates get fixed
def update
@info_request_event = InfoRequestEvent.find(params[:id])
if @info_request_event.event_type != 'response'
raise Exception("can only mark responses as requires clarification")
end
@info_request_event.described_state = 'waiting_clarification'
@info_request_event.calculated_state = 'waiting_clarification'
# TODO: deliberately don't update described_at so doesn't reenter search?
@info_request_event.save!
flash[:notice] = "Old response marked as having been a clarification"
redirect_to admin_request_url(@info_request_event.info_request)
end
end
|