volunteers/app/controllers/application_controller.rb

19 lines
540 B
Ruby
Raw Normal View History

2022-11-21 11:10:04 +01:00
class ApplicationController < ActionController::Base
2022-12-20 16:29:05 +01:00
before_action :configure_permitted_parameters, if: :devise_controller?
2023-01-16 18:30:10 +01:00
2023-01-15 21:00:26 +01:00
include Pundit::Authorization
alias :current_user :current_member
2023-01-16 18:30:10 +01:00
rescue_from Pundit::NotAuthorizedError, with: :user_not_authorized
2022-12-20 16:29:05 +01:00
2023-01-15 21:00:26 +01:00
protected
2022-12-20 16:29:05 +01:00
2023-01-15 21:00:26 +01:00
def configure_permitted_parameters
devise_parameter_sanitizer.permit(:sign_up, keys: [:name])
end
2023-01-16 18:30:10 +01:00
def user_not_authorized
flash[:alert] = "You are not authorized to perform this action."
redirect_back(fallback_location: root_path)
end
2022-11-21 11:10:04 +01:00
end