Send notifications for backup/restore from system user

This commit is contained in:
Arpit Jalan
2014-07-02 15:01:32 +05:30
parent d23c7cdc65
commit d0753ec7a5
2 changed files with 4 additions and 4 deletions

View File

@ -268,9 +268,9 @@ module Export
log "Notifying '#{@user.username}' of the end of the backup..."
# NOTE: will only notify if @user != Discourse.site_contact_user
if @success
SystemMessage.create(@user, :export_succeeded)
SystemMessage.create_from_system_user(@user, :export_succeeded)
else
SystemMessage.create(@user, :export_failed, logs: @logs.join("\n"))
SystemMessage.create_from_system_user(@user, :export_failed, logs: @logs.join("\n"))
end
end