demarches-normaliennes/app/controllers/users_controller.rb

33 lines
866 B
Ruby
Raw Normal View History

2015-09-23 19:20:03 +02:00
class UsersController < ApplicationController
before_action :authenticate_user!
2016-02-01 18:18:55 +01:00
def index
redirect_to root_path
end
def current_user_dossier dossier_id=nil
dossier_id ||= params[:dossier_id] || params[:id]
dossier = Dossier.find(dossier_id)
return dossier if dossier.owner?(current_user.email) || dossier.invite_by_user?(current_user.email)
raise ActiveRecord::RecordNotFound
end
2016-01-26 15:52:05 +01:00
def authorized_routes? controller
2017-07-04 12:05:11 +02:00
redirect_to_root_path 'Le statut de votre dossier n\'autorise pas cette URL' unless UserRoutesAuthorizationService.authorized_route?(
2017-06-12 13:49:51 +02:00
controller,
current_user_dossier)
rescue ActiveRecord::RecordNotFound
redirect_to_root_path 'Vous navez pas accès à ce dossier.'
end
private
def redirect_to_root_path message
flash.alert = message
redirect_to url_for root_path
end
2017-04-04 15:27:04 +02:00
end