app/controllers/federails/application_controller.rb in federails-0.0.1 vs app/controllers/federails/application_controller.rb in federails-0.1.0

- old
+ new

@@ -1,4 +1,23 @@ module Federails class ApplicationController < ActionController::Base + include Pundit::Authorization + + rescue_from ActiveRecord::RecordNotFound, with: :error_not_found + + layout Federails.configuration.app_layout if Federails.configuration.app_layout + + private + + def error_fallback(exception, fallback_message, status) + message = exception&.message || fallback_message + respond_to do |format| + format.json { render json: { error: message }, status: status } + format.html { raise exception } + end + end + + def error_not_found(exception = nil) + error_fallback(exception, 'Resource not found', :not_found) + end end end