demarches-normaliennes/app/controllers/users/dossiers/invites_controller.rb
2018-10-10 10:38:57 +02:00

26 lines
722 B
Ruby

class Users::Dossiers::InvitesController < UsersController
def authenticate_user!
session["user_return_to"] = request.fullpath
email = params[:email]
if email.present? && User.find_by(email: email).nil?
redirect_to new_user_registration_path(user: { email: email })
else
super
end
end
def show
invite = Invite.where(email: current_user.email, id: params[:id].to_i).first!
dossier = invite.dossier
if dossier.brouillon?
redirect_to brouillon_dossier_path(dossier)
else
redirect_to dossier_path(dossier)
end
rescue ActiveRecord::RecordNotFound
flash.alert = t('errors.messages.dossier_not_found')
redirect_to url_for dossiers_path
end
end