diff options
author | francis <francis> | 2008-10-03 17:09:05 +0000 |
---|---|---|
committer | francis <francis> | 2008-10-03 17:09:05 +0000 |
commit | 0d6f3ecd0f117c6df12ad814970cf9db6cbdeea5 (patch) | |
tree | 9f00a1c7a7dea25b7d5631d6aaa965ad1239b764 /app/models/info_request_event.rb | |
parent | 7b0a69b450b31f5ad5a45c9c637c641f04e1cac4 (diff) |
State of a request when response is to be by post.
Diffstat (limited to 'app/models/info_request_event.rb')
-rw-r--r-- | app/models/info_request_event.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/models/info_request_event.rb b/app/models/info_request_event.rb index 0b6e126a9..37a968770 100644 --- a/app/models/info_request_event.rb +++ b/app/models/info_request_event.rb @@ -21,7 +21,7 @@ # Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved. # Email: francis@mysociety.org; WWW: http://www.mysociety.org/ # -# $Id: info_request_event.rb,v 1.62 2008-10-02 23:11:40 francis Exp $ +# $Id: info_request_event.rb,v 1.63 2008-10-03 17:09:06 francis Exp $ class InfoRequestEvent < ActiveRecord::Base belongs_to :info_request @@ -55,6 +55,7 @@ class InfoRequestEvent < ActiveRecord::Base nil, 'waiting_response', 'waiting_clarification', + 'gone_postal', 'not_held', 'rejected', 'successful', @@ -200,6 +201,8 @@ class InfoRequestEvent < ActiveRecord::Base "Acknowledgement" elsif status == 'waiting_clarification' "Clarification required" + elsif status == 'gone_postal' + "Handled by post" elsif status == 'not_held' "Information not held" elsif status == 'rejected' |