Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatricio Cano <suprnova32@gmail.com>2016-08-09 20:43:47 +0300
committerPatricio Cano <suprnova32@gmail.com>2016-08-16 01:20:57 +0300
commit5994c11910822463faeabb7b5f11d6529036db9d (patch)
treea80a8ffea4d4ef868790aab627abfcaa1c982d10 /app/controllers/admin
parent43e756d4eafd79f4d2f366b646ebb94af78b5a4c (diff)
Further refactor and syntax fixes.
Diffstat (limited to 'app/controllers/admin')
-rw-r--r--app/controllers/admin/spam_logs_controller.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/app/controllers/admin/spam_logs_controller.rb b/app/controllers/admin/spam_logs_controller.rb
index 7876d2ee767..2abfa22712d 100644
--- a/app/controllers/admin/spam_logs_controller.rb
+++ b/app/controllers/admin/spam_logs_controller.rb
@@ -1,5 +1,4 @@
class Admin::SpamLogsController < Admin::ApplicationController
-
def index
@spam_logs = SpamLog.order(id: :desc).page(params[:page])
end
@@ -19,10 +18,10 @@ class Admin::SpamLogsController < Admin::ApplicationController
def mark_as_ham
spam_log = SpamLog.find(params[:id])
- if SpamService.new(spam_log).mark_as_ham!
+ if HamService.new(spam_log).mark_as_ham!
redirect_to admin_spam_logs_path, notice: 'Spam log successfully submitted as ham.'
else
- redirect_to admin_spam_logs_path, notice: 'Error with Akismet. Please check the logs for more info.'
+ redirect_to admin_spam_logs_path, alert: 'Error with Akismet. Please check the logs for more info.'
end
end
end