diff options
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/user.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/models/user.rb b/app/models/user.rb index 8ef0b7193..c33047d26 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -23,7 +23,7 @@ # Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved. # Email: francis@mysociety.org; WWW: http://www.mysociety.org/ # -# $Id: user.rb,v 1.83 2009-03-09 15:48:32 tony Exp $ +# $Id: user.rb,v 1.84 2009-03-18 01:32:14 francis Exp $ require 'digest/sha1' @@ -223,6 +223,9 @@ class User < ActiveRecord::Base def can_file_requests? self.ban_text.empty? end + def can_make_followup? + self.ban_text.empty? + end def can_make_comments? self.ban_text.empty? end |