Merge pull request from techAPJ/system-user-notifications

TRIVIAL: remove obsolete comments
This commit is contained in:
Régis Hanol 2014-07-02 14:11:37 +02:00
commit 1bd7c90168
2 changed files with 0 additions and 2 deletions
lib

View file

@ -266,7 +266,6 @@ module Export
def notify_user
log "Notifying '#{@user.username}' of the end of the backup..."
# NOTE: will only notify if @user != Discourse.site_contact_user
if @success
SystemMessage.create_from_system_user(@user, :export_succeeded)
else

View file

@ -282,7 +282,6 @@ module Import
def notify_user
if user = User.find_by(email: @user_info[:email])
log "Notifying '#{user.username}' of the end of the restore..."
# NOTE: will only notify if user != Discourse.site_contact_user
if @success
SystemMessage.create_from_system_user(user, :import_succeeded)
else