From 23264ec3eb8e17543922a0093ed402a9d7ba5de9 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Fri, 14 Sep 2007 15:30:46 +0000 Subject: Mail notification options restored (default is: issue_added and issue_updated). Added mail notification when adding a news (disabled by default). git-svn-id: http://redmine.rubyforge.org/svn/trunk@728 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/controllers/admin_controller.rb | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'app/controllers/admin_controller.rb') diff --git a/app/controllers/admin_controller.rb b/app/controllers/admin_controller.rb index 43dbb9964..2451f5ef6 100644 --- a/app/controllers/admin_controller.rb +++ b/app/controllers/admin_controller.rb @@ -46,6 +46,12 @@ class AdminController < ApplicationController end def mail_options + @notifiables = %w(issue_added issue_updated news_added document_added file_added message_posted) + if request.post? + Setting.notified_events = (params[:notified_events] || []) + flash[:notice] = l(:notice_successful_update) + redirect_to :controller => 'admin', :action => 'mail_options' + end end def test_email -- cgit v1.2.3