diff options
author | Faton Selishta <fatonselishta@gmail.com> | 2011-06-02 14:32:00 +0000 |
---|---|---|
committer | Faton Selishta <fatonselishta@gmail.com> | 2011-06-02 14:32:00 +0000 |
commit | 018e04dd94503dec29fe13c8f1044a0fda887698 (patch) | |
tree | d22c31839ab6430e45b44abc48ac2dcb6f151328 /app/models/info_request_event.rb | |
parent | 03288683a6b4f95b5f3a007433b4adf8c5f22c17 (diff) |
Specific code for our requirements (kosovo law, our request etc..)
Diffstat (limited to 'app/models/info_request_event.rb')
-rw-r--r-- | app/models/info_request_event.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/models/info_request_event.rb b/app/models/info_request_event.rb index 1b22fa547..64f602fbe 100644 --- a/app/models/info_request_event.rb +++ b/app/models/info_request_event.rb @@ -62,6 +62,8 @@ class InfoRequestEvent < ActiveRecord::Base 'waiting_response', 'waiting_clarification', 'gone_postal', + 'deadline_extended', + 'wrong_response', 'not_held', 'rejected', 'successful', @@ -288,6 +290,10 @@ class InfoRequestEvent < ActiveRecord::Base return "Clarification required" elsif status == 'gone_postal' return "Handled by post" + elsif status == 'deadline_extended' + return "Deadline Extended" + elsif status == 'wrong_response' + return "Wrong Response" elsif status == 'not_held' return "Information not held" elsif status == 'rejected' |