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