21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-05-11 13:08:39 +02:00
chexpire/app/controllers/application_controller.rb
2018-05-30 16:58:30 +02:00

19 lines
573 B
Ruby

class ApplicationController < ActionController::Base
include Pundit
rescue_from Pundit::NotAuthorizedError, with: :user_not_authorized
before_action :configure_devise_parameters, if: :devise_controller?
protected
def configure_devise_parameters
devise_parameter_sanitizer.permit(:sign_up, keys: [:tos_accepted])
devise_parameter_sanitizer.permit(:account_update, keys: [:notifications_enabled])
end
def user_not_authorized
flash[:alert] = I18n.t("user_not_authorized", scope: :flashes)
redirect_to(request.referrer || root_path)
end
end