about summary refs log tree commit diff
path: root/app/controllers/accounts_controller.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-03-19 20:03:28 +0100
committerEugen Rochko <eugen@zeonfederated.com>2017-03-19 20:03:28 +0100
commit08b96f1b9f419ab250f24f3828db28a247ef11ac (patch)
tree7ef4667515fd9c530a6253c5e88a9c8ba53c5813 /app/controllers/accounts_controller.rb
parent8c7277acd4988a06192f559218a7c59bf5f7dd79 (diff)
Fix wrong HTTP status codes on error pages
Diffstat (limited to 'app/controllers/accounts_controller.rb')
-rw-r--r--app/controllers/accounts_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/accounts_controller.rb b/app/controllers/accounts_controller.rb
index 00f8047fd..dc1aeb5ea 100644
--- a/app/controllers/accounts_controller.rb
+++ b/app/controllers/accounts_controller.rb
@@ -56,6 +56,6 @@ class AccountsController < ApplicationController
   end
 
   def check_account_suspension
-    head 410 if @account.suspended?
+    gone if @account.suspended?
   end
 end