Merge pull request #3468 from betagouv/fix-sentry-230

Fix sentry 230
This commit is contained in:
Pierre de La Morinerie 2019-02-19 12:42:03 +01:00 committed by GitHub
commit afc2f2cd8e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -8,7 +8,7 @@ class Administrateurs::ActivateController < ApplicationController
if @administrateur
# the administrateur activates its account from an email
trust_device
trust_device(Time.zone.now)
else
flash.alert = "Le lien de validation d'administrateur a expiré, #{helpers.contact_link('contactez-nous', tags: 'lien expiré')} pour obtenir un nouveau lien."
redirect_to root_path

View file

@ -6,7 +6,7 @@ class Gestionnaires::ActivateController < ApplicationController
if @gestionnaire
# the gestionnaire activates its account from an email
trust_device
trust_device(Time.zone.now)
else
flash.alert = "Le lien de validation du compte instructeur a expiré, #{helpers.contact_link('contactez-nous', tags: 'lien expiré')} pour obtenir un nouveau lien."
redirect_to root_path