12
13
14
15
16
17
18
19
20
21
22
23
24
|
# File 'lib/plugins/acts_as_watchable/lib/acts_as_watchable.rb', line 12
def acts_as_watchable(options = {})
return if self.included_modules.include?(Redmine::Acts::Watchable::InstanceMethods)
class_eval do
has_many :watchers, :as => :watchable, :dependent => :delete_all
has_many :watcher_users, :through => :watchers, :source => :user, :validate => false
scope :watched_by, lambda { |user_id|
joins(:watchers).
where("#{Watcher.table_name}.user_id = ?", user_id)
}
end
send :include, Redmine::Acts::Watchable::InstanceMethods
end
|