mastodon/app/controllers/auth/confirmations_controller.rb

12 lines
250 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-10-03 16:38:22 +02: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 16:38:22 +02:00
end