Chatwoot/app/controllers/api/base_controller.rb

17 lines
471 B
Ruby
Raw Normal View History

class Api::BaseController < ApplicationController
respond_to :json
before_action :authenticate_user!
2019-10-20 08:47:26 +00:00
unless Rails.env.development?
rescue_from StandardError do |exception|
Raven.capture_exception(exception)
render json: { error: '500 error', message: exception.message }.to_json, status: 500
end
end
private
def set_conversation
@conversation ||= current_account.conversations.find_by(display_id: params[:conversation_id])
end
end