code format cleanup Watcher model

git-svn-id: http://svn.redmine.org/redmine/trunk@12568 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2014-01-09 07:41:34 +00:00
parent 8a9db2841d
commit 05aa146fad
1 changed files with 4 additions and 3 deletions

View File

@ -62,11 +62,12 @@ class Watcher < ActiveRecord::Base
pruned = 0
where(:user_id => user.id).all.each do |watcher|
next if watcher.watchable.nil?
if options.has_key?(:project)
next unless watcher.watchable.respond_to?(:project) && watcher.watchable.project == options[:project]
unless watcher.watchable.respond_to?(:project) &&
watcher.watchable.project == options[:project]
next
end
end
if watcher.watchable.respond_to?(:visible?)
unless watcher.watchable.visible?(user)
watcher.destroy