16 lines
359 B
Ruby
16 lines
359 B
Ruby
class ApplicationController < ActionController::Base
|
|
protect_from_forgery with: :exception
|
|
check_authorization
|
|
|
|
rescue_from CanCan::AccessDenied do |exception|
|
|
redirect_to root_path, flash: { error: exception.message }
|
|
end
|
|
|
|
def after_sign_in_path_for(resource)
|
|
root_path
|
|
end
|
|
|
|
def after_sign_up_path_for(resource)
|
|
root_path
|
|
end
|
|
end
|