1
0
mirror of https://github.com/mastodon/mastodon synced 2024-12-20 01:28:22 +09:00
mastodon/app/controllers/auth/confirmations_controller.rb

12 lines
250 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-10-03 23:38:22 +09:00
class Auth::ConfirmationsController < Devise::ConfirmationsController
layout 'auth'
def show
super do |user|
BootstrapTimelineWorker.perform_async(user.account_id) if user.errors.empty?
end
end
2016-10-03 23:38:22 +09:00
end