1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/controllers/application_controller.rb

31 lines
721 B
Ruby

# frozen_string_literal: true
class ApplicationController < ActionController::Base
class NotAuthorizedError < RuntimeError; end
before_action :set_raven_context
skip_before_action :verify_authenticity_token, if: :json_request?
rescue_from ActiveRecord::RecordNotFound, with: :not_found
rescue_from NotAuthorizedError, with: :unauthorized
private
def set_raven_context
Raven.user_context id: current_user.id if user_signed_in?
Raven.extra_context params: params.to_unsafe_h, url: request.url
end
def json_request?
request.format.json?
end
def not_found
render status: :not_found, json: {}
end
def unauthorized
render status: :unauthorized, json: {}
end
end