about summary refs log tree commit diff
path: root/app/controllers/auth/confirmations_controller.rb
blob: d5e8e58ede3241c0b243cc18214543c71fc9e2de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

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