Procházet zdrojové kódy

Fixed that Mantis/Trac users are not imported because of password too short (#14590).


git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@12163 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/2.4.0
Jean-Philippe Lang před 10 roky
rodič
revize
5e2eedf2c5

+ 4
- 1
lib/tasks/migrate_from_mantis.rake Zobrazit soubor

Setting.cross_project_issue_relations = 1 if Setting.respond_to? 'cross_project_issue_relations' Setting.cross_project_issue_relations = 1 if Setting.respond_to? 'cross_project_issue_relations'


old_notified_events = Setting.notified_events old_notified_events = Setting.notified_events
old_password_min_length = Setting.password_min_length
begin begin
# Turn off email notifications temporarily # Turn off email notifications temporarily
Setting.notified_events = [] Setting.notified_events = []
Setting.password_min_length = 4
# Run the migration # Run the migration
MantisMigrate.establish_connection db_params MantisMigrate.establish_connection db_params
MantisMigrate.migrate MantisMigrate.migrate
ensure ensure
# Restore previous notification settings even if the migration fails
# Restore previous settings
Setting.notified_events = old_notified_events Setting.notified_events = old_notified_events
Setting.password_min_length = old_password_min_length
end end


end end

+ 4
- 1
lib/tasks/migrate_from_trac.rake Zobrazit soubor

puts puts


old_notified_events = Setting.notified_events old_notified_events = Setting.notified_events
old_password_min_length = Setting.password_min_length
begin begin
# Turn off email notifications temporarily # Turn off email notifications temporarily
Setting.notified_events = [] Setting.notified_events = []
Setting.password_min_length = 4
# Run the migration # Run the migration
TracMigrate.migrate TracMigrate.migrate
ensure ensure
# Restore previous notification settings even if the migration fails
# Restore previous settings
Setting.notified_events = old_notified_events Setting.notified_events = old_notified_events
Setting.password_min_length = old_password_min_length
end end
end end
end end

Načítá se…
Zrušit
Uložit