diff options
author | francis <francis> | 2008-02-21 20:10:21 +0000 |
---|---|---|
committer | francis <francis> | 2008-02-21 20:10:21 +0000 |
commit | 40d906d08d007c9cb81cbe3c4e2ee23b0894d2be (patch) | |
tree | afb367c1fe09024fcf12b3050ceda51d8d5cf4f8 /app/models/info_request_event.rb | |
parent | 2b82914ae6dd30d9f3726e26f59dd3172b837523 (diff) |
Add new state to indicate that a response is not in a known category.
Diffstat (limited to 'app/models/info_request_event.rb')
-rw-r--r-- | app/models/info_request_event.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/models/info_request_event.rb b/app/models/info_request_event.rb index a8c2c7f50..c89f1c720 100644 --- a/app/models/info_request_event.rb +++ b/app/models/info_request_event.rb @@ -16,7 +16,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.15 2008-02-15 11:18:55 francis Exp $ +# $Id: info_request_event.rb,v 1.16 2008-02-21 20:10:21 francis Exp $ class InfoRequestEvent < ActiveRecord::Base belongs_to :info_request @@ -40,7 +40,8 @@ class InfoRequestEvent < ActiveRecord::Base 'waiting_clarification', 'rejected', 'successful', - 'partially_successful' + 'partially_successful', + 'requires_admin' ] # We store YAML version of parameters in the database |