From 8ddcc4caf51c3ae911f7789ad21dcb456ebcf193 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sat, 11 Feb 2012 17:14:56 +0000 Subject: Adds a News#commentable? method to easily specific additional rules. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8854 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/models/news.rb | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'app/models') diff --git a/app/models/news.rb b/app/models/news.rb index 78dcc0c8c..eed17945e 100644 --- a/app/models/news.rb +++ b/app/models/news.rb @@ -42,6 +42,11 @@ class News < ActiveRecord::Base !user.nil? && user.allowed_to?(:view_news, project) end + # Returns true if the news can be commented by user + def commentable?(user=User.current) + user.allowed_to?(:comment_news, project) + end + # returns latest news for projects visible by user def self.latest(user = User.current, count = 5) find(:all, :limit => count, -- cgit v1.2.3