10 lines
219 B
Ruby
10 lines
219 B
Ruby
|
# frozen_string_literal: true
|
||
|
module Users
|
||
|
class ConfirmationsController < Devise::ConfirmationsController
|
||
|
private
|
||
|
def after_confirmation_path_for(resource_name, resource)
|
||
|
sign_in_path
|
||
|
end
|
||
|
end
|
||
|
end
|