Class: News
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- News
- Includes:
- Redmine::SafeAttributes
- Defined in:
- app/models/news.rb
Overview
Redmine - project management software Copyright © 2006-2022 Jean-Philippe Lang
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Class Method Summary collapse
-
.latest(user = User.current, count = 5) ⇒ Object
returns latest news for projects visible by user.
Instance Method Summary collapse
-
#cc_for_added_news ⇒ Object
Returns the email addresses that should be cc’d when a new news is added.
-
#commentable?(user = User.current) ⇒ Boolean
Returns true if the news can be commented by user.
- #notified_users ⇒ Object
-
#notified_watchers_for_added_news ⇒ Object
Returns the users that should be cc’d when a new news is added.
- #recipients ⇒ Object
- #visible?(user = User.current) ⇒ Boolean
Methods included from Redmine::SafeAttributes
#delete_unsafe_attributes, included, #safe_attribute?, #safe_attribute_names, #safe_attributes=
Class Method Details
Instance Method Details
#cc_for_added_news ⇒ Object
Returns the email addresses that should be cc’d when a new news is added
79 80 81 |
# File 'app/models/news.rb', line 79 def cc_for_added_news notified_watchers_for_added_news.map(&:mail) end |
#commentable?(user = User.current) ⇒ Boolean
Returns true if the news can be commented by user
54 55 56 |
# File 'app/models/news.rb', line 54 def commentable?(user=User.current) user.allowed_to?(:comment_news, project) end |
#notified_users ⇒ Object
58 59 60 |
# File 'app/models/news.rb', line 58 def notified_users project.users.select {|user| user.notify_about?(self) && user.allowed_to?(:view_news, project)} end |
#notified_watchers_for_added_news ⇒ Object
Returns the users that should be cc’d when a new news is added
67 68 69 70 71 72 73 74 75 76 |
# File 'app/models/news.rb', line 67 def notified_watchers_for_added_news watchers = [] if m = project.enabled_module('news') watchers = m.notified_watchers unless project.is_public? watchers = watchers.select {|user| project.users.include?(user)} end end watchers end |
#recipients ⇒ Object
62 63 64 |
# File 'app/models/news.rb', line 62 def recipients notified_users.map(&:mail) end |
#visible?(user = User.current) ⇒ Boolean
49 50 51 |
# File 'app/models/news.rb', line 49 def visible?(user=User.current) !user.nil? && user.allowed_to?(:view_news, project) end |