diff options
author | Dmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com> | 2011-11-28 23:34:24 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com> | 2011-11-28 23:34:24 +0200 |
commit | 958497fecbc630297f2d0d5f7b64b484966ae907 (patch) | |
tree | 2aefeccea82a4edd64ff1ead08bd72f31918ae36 /app/models | |
parent | 017dfaee6500b10e30e46db0040672f792f360c5 (diff) | |
download | gitlab-ce-958497fecbc630297f2d0d5f7b64b484966ae907.tar.gz |
fix issue count
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/issue.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/models/issue.rb b/app/models/issue.rb index c06f173888b..b8b432673a4 100644 --- a/app/models/issue.rb +++ b/app/models/issue.rb @@ -33,6 +33,10 @@ class Issue < ActiveRecord::Base acts_as_list + def self.open_for(user) + opened.assigned(user) + end + def today? Date.today == created_at.to_date end |