Fix uncaught error when invalid date is supplied to API (#19480)

Fix #19213
master
Eugen Rochko 2022-10-27 14:30:52 +02:00 committed by GitHub
parent d2eb726962
commit 3e18e05330
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -24,6 +24,10 @@ class Api::BaseController < ApplicationController
render json: { error: 'Duplicate record' }, status: 422
end
rescue_from Date::Error do
render json: { error: 'Invalid date supplied' }, status: 422
end
rescue_from ActiveRecord::RecordNotFound do
render json: { error: 'Record not found' }, status: 404
end