mastodon/app/controllers/auth/confirmations_controller.rb

19 lines
331 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-10-03 07:38:22 -07:00
class Auth::ConfirmationsController < Devise::ConfirmationsController
layout 'auth'
2017-11-20 22:13:37 -08:00
before_action :set_pack
def show
super do |user|
BootstrapTimelineWorker.perform_async(user.account_id) if user.errors.empty?
end
end
2017-11-20 22:13:37 -08:00
private
def set_pack
use_pack 'auth'
end
2016-10-03 07:38:22 -07:00
end