2016-11-16 02:56:29 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-04 01:38:22 +11:00
|
|
|
class Auth::ConfirmationsController < Devise::ConfirmationsController
|
|
|
|
layout 'auth'
|
2017-09-10 17:58:38 +10:00
|
|
|
|
|
|
|
def show
|
|
|
|
super do |user|
|
|
|
|
BootstrapTimelineWorker.perform_async(user.account_id) if user.errors.empty?
|
|
|
|
end
|
|
|
|
end
|
2016-10-04 01:38:22 +11:00
|
|
|
end
|