mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
13 lines
256 B
Ruby
13 lines
256 B
Ruby
|
|
class ConfirmationsController < Devise::ConfirmationsController
|
||
|
|
protected
|
||
|
|
|
||
|
|
def after_confirmation_path_for(resource_name, resource)
|
||
|
|
if signed_in?
|
||
|
|
signed_in_root_path(resource)
|
||
|
|
else
|
||
|
|
sign_in resource
|
||
|
|
root_path
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|