diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-12-29 19:52:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-29 19:52:04 +0100 |
commit | 38fc1b498d971f7b33532c583b12e5dd3469af3c (patch) | |
tree | 622690ead8b672b115718b8d027cfef1acac9902 /app/controllers/auth | |
parent | 511c6f96251a4492f7c5bea1f13018d61cfb9ce0 (diff) |
Add more instance stats APIs (#6125)
* Add GET /api/v1/instance/peers API to reveal known domains * Add GET /api/v1/instance/activity API * Make new APIs disableable, exclude private statuses from activity stats * Fix code style issue * Fix week timestamps
Diffstat (limited to 'app/controllers/auth')
-rw-r--r-- | app/controllers/auth/confirmations_controller.rb | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/app/controllers/auth/confirmations_controller.rb b/app/controllers/auth/confirmations_controller.rb index d5e8e58ed..2fdb281f4 100644 --- a/app/controllers/auth/confirmations_controller.rb +++ b/app/controllers/auth/confirmations_controller.rb @@ -2,10 +2,4 @@ class Auth::ConfirmationsController < Devise::ConfirmationsController layout 'auth' - - def show - super do |user| - BootstrapTimelineWorker.perform_async(user.account_id) if user.errors.empty? - end - end end |