9 lines
180 B
Ruby
9 lines
180 B
Ruby
|
class ConfirmationsController < Devise::ConfirmationsController
|
||
|
layout "devise"
|
||
|
|
||
|
private
|
||
|
|
||
|
def after_confirmation_path_for(resource_name, resource)
|
||
|
basic_infos_path
|
||
|
end
|
||
|
end
|