Ver a proveniência

Add secure option to additional cookie (#8069)

master
abcang há 5 anos
committed by Eugen Rochko
ascendente
cometimento
69bf116345
1 ficheiros alterados com 2 adições e 0 eliminações
  1. +2
    -0
      config/initializers/devise.rb

+ 2
- 0
config/initializers/devise.rb Ver ficheiro

@@ -9,6 +9,7 @@ Warden::Manager.after_set_user except: :fetch do |user, warden|
value: session_id,
expires: 1.year.from_now,
httponly: true,
secure: (Rails.env.production? || ENV['LOCAL_HTTPS'] == 'true'),
}
end

@@ -18,6 +19,7 @@ Warden::Manager.after_fetch do |user, warden|
value: warden.cookies.signed['_session_id'] || warden.raw_session['auth_id'],
expires: 1.year.from_now,
httponly: true,
secure: (Rails.env.production? || ENV['LOCAL_HTTPS'] == 'true'),
}
else
warden.logout


Carregando…
Cancelar
Guardar