1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-31 19:47:14 +00:00

Revert r22504 that missing a necessary file (#39500).

git-svn-id: https://svn.redmine.org/redmine/trunk@22511 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2023-12-11 09:14:47 +00:00
parent 7c7c1dac16
commit 21423d4b7f
4 changed files with 6 additions and 6 deletions

View File

@ -314,7 +314,7 @@ jsonp_enabled:
default: 0
security_notifications: 1
default_notification_option:
default: 'only_assigned'
default: 'only_my_events'
emails_header:
default: ''
thumbnails_enabled:

View File

@ -5,9 +5,9 @@ class CreateSettings < ActiveRecord::Migration[4.2]
t.column "value", :text
end
# Persist default settings for new installations
Setting.create!(name: 'default_notification_option', value: Setting.default_notification_option)
Setting.create!(name: 'text_formatting', value: Setting.text_formatting)
# Persist text_formatting default setting for new installations
setting = Setting.new(:name => "text_formatting", :value => Setting.text_formatting)
setting.save!
end
def self.down

View File

@ -3017,7 +3017,7 @@ class IssueTest < ActiveSupport::TestCase
end
test "Issue#recipients should include the author if the author is active" do
issue = Issue.generate!(:author => User.generate!(:mail_notification => 'only_my_events'))
issue = Issue.generate!(:author => User.generate!)
assert issue.author, "No author set for Issue"
assert issue.recipients.include?(issue.author.mail)
end

View File

@ -192,7 +192,7 @@ class UserTest < ActiveSupport::TestCase
def test_user_before_create_should_set_the_mail_notification_to_the_default_setting
user1 = User.generate!
assert_equal 'only_assigned', user1.mail_notification
assert_equal 'only_my_events', user1.mail_notification
with_settings :default_notification_option => 'all' do
user2 = User.generate!
assert_equal 'all', user2.mail_notification