diff options
author | Go MAEDA <maeda@farend.jp> | 2019-05-10 00:54:52 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-05-10 00:54:52 +0000 |
commit | a1c40d146a27871bc0621850750fc487eada250b (patch) | |
tree | e4b116c09c361da3e0aa278cf0e123c246fb9838 /app/models/import.rb | |
parent | 1727950c18c83eb2189fbafe2363c9c2f322eead (diff) | |
download | redmine-a1c40d146a27871bc0621850750fc487eada250b.tar.gz redmine-a1c40d146a27871bc0621850750fc487eada250b.zip |
Option to send email notifications while importing issues from CSV files (#22771).
Patch by Yuichi HARADA.
git-svn-id: http://svn.redmine.org/redmine/trunk@18153 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/models/import.rb')
-rw-r--r-- | app/models/import.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/models/import.rb b/app/models/import.rb index df6b085a6..ef4b0321e 100644 --- a/app/models/import.rb +++ b/app/models/import.rb @@ -80,7 +80,8 @@ class Import < ActiveRecord::Base 'separator' => separator, 'wrapper' => wrapper, 'encoding' => encoding, - 'date_format' => date_format + 'date_format' => date_format, + 'notifications' => '0' ) end |