diff options
author | David Cabo <david@calibea.com> | 2011-08-15 11:46:08 +0200 |
---|---|---|
committer | David Cabo <david@calibea.com> | 2011-08-15 11:46:08 +0200 |
commit | c775e74d5bdb45043b7d1ac6e6f330a33c5f05e2 (patch) | |
tree | 1a05541d281acc92bf7d272ee64f6b81a4e0978e /app/models/info_request.rb | |
parent | c7f4962974d814a820fcb5bda6440a8f0ac64eec (diff) | |
parent | 239120b6d180ac0c60b6e3fc44c2bc192c828e12 (diff) |
Merge branch 'master' of github.com:sebbacon/alaveteli
Diffstat (limited to 'app/models/info_request.rb')
-rw-r--r-- | app/models/info_request.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/models/info_request.rb b/app/models/info_request.rb index 419546c99..c667e1499 100644 --- a/app/models/info_request.rb +++ b/app/models/info_request.rb @@ -651,6 +651,8 @@ public # days is a very long time. def date_very_overdue_after last_sent = last_event_forming_initial_request + very_late_days_later = MySociety::Config.get('REPLY_VERY_LATE_AFTER_DAYS', 40) + school_very_late_days_later = MySociety::Config.get('SPECIAL_REPLY_VERY_LATE_AFTER_DAYS', 60) if self.public_body.is_school? # schools have 60 working days maximum (even over a long holiday) return Holiday.due_date_from(self.date_initial_request_last_sent_at, 60) |