ADD set sso autologin cookie
This commit is contained in:
parent
75f5b3827c
commit
4f343c7967
|
@ -257,21 +257,21 @@ class AccountsController < ApplicationController
|
||||||
# UserDayCertification.create(user_id: user.id, status: 1)
|
# UserDayCertification.create(user_id: user.id, status: 1)
|
||||||
end
|
end
|
||||||
|
|
||||||
# def set_autologin_cookie(user)
|
def set_autologin_cookie(user)
|
||||||
# token = Token.get_or_create_permanent_login_token(user, "autologin")
|
token = Token.get_or_create_permanent_login_token(user, "autologin")
|
||||||
# cookie_options = {
|
cookie_options = {
|
||||||
# :value => token.value,
|
:value => token.value,
|
||||||
# :expires => 1.month.from_now,
|
:expires => 1.month.from_now,
|
||||||
# :path => '/',
|
:path => '/',
|
||||||
# :secure => false,
|
:secure => false,
|
||||||
# :httponly => true
|
:httponly => true
|
||||||
# }
|
}
|
||||||
# if edu_setting('cookie_domain').present?
|
if edu_setting('cookie_domain').present?
|
||||||
# cookie_options = cookie_options.merge(domain: edu_setting('cookie_domain'))
|
cookie_options = cookie_options.merge(domain: edu_setting('cookie_domain'))
|
||||||
# end
|
end
|
||||||
# cookies[autologin_cookie_name] = cookie_options
|
cookies[autologin_cookie_name] = cookie_options
|
||||||
# logger.info("cookies is #{cookies}")
|
logger.info("cookies is #{cookies}")
|
||||||
# end
|
end
|
||||||
|
|
||||||
def logout
|
def logout
|
||||||
Rails.logger.info("########___logout_current_user____________########{current_user.try(:id)}")
|
Rails.logger.info("########___logout_current_user____________########{current_user.try(:id)}")
|
||||||
|
|
Loading…
Reference in New Issue