mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 21:56:12 +08:00
16 lines
369 B
Ruby
16 lines
369 B
Ruby
|
module Api
|
||
|
module V1
|
||
|
class BaseController < ApiController
|
||
|
rescue_from ActionController::ParameterMissing do |e|
|
||
|
logger.error e.message
|
||
|
render json: {}, status: :bad_request
|
||
|
end
|
||
|
|
||
|
rescue_from ActiveRecord::RecordNotFound do |e|
|
||
|
logger.error e.message
|
||
|
render json: {}, status: :not_found
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|