diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-05-13 19:43:35 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-05-13 19:43:35 +0000 |
commit | bca5bd9c62769ca85f00259ac0e9a3c4538f7051 (patch) | |
tree | a14630132f58878681cc416aa86b20a8d448923c /app/controllers/issues_controller.rb | |
parent | b90e84b9fe252df464d084f0222c65367407a4ba (diff) | |
download | redmine-bca5bd9c62769ca85f00259ac0e9a3c4538f7051.tar.gz redmine-bca5bd9c62769ca85f00259ac0e9a3c4538f7051.zip |
Added watchers for message boards (watchers controller modified to support any watchable model).
No notification yet when a new message is posted.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@530 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers/issues_controller.rb')
-rw-r--r-- | app/controllers/issues_controller.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/controllers/issues_controller.rb b/app/controllers/issues_controller.rb index cec126dd3..0a8d19a31 100644 --- a/app/controllers/issues_controller.rb +++ b/app/controllers/issues_controller.rb @@ -27,6 +27,8 @@ class IssuesController < ApplicationController include IfpdfHelper helper :issue_relations include IssueRelationsHelper + helper :watchers + include WatchersHelper def show @status_options = @issue.status.find_new_statuses_allowed_to(logged_in_user.role_for_project(@project), @issue.tracker) if logged_in_user |