Fix generic HTTP 500 error on duplicate records (#12563)
Fix #12551 Fix #12547
This commit is contained in:
		
							parent
							
								
									1653ae91ce
								
							
						
					
					
						commit
						6d7daf6154
					
				| 
						 | 
					@ -20,6 +20,10 @@ class Api::BaseController < ApplicationController
 | 
				
			||||||
    render json: { error: e.to_s }, status: 422
 | 
					    render json: { error: e.to_s }, status: 422
 | 
				
			||||||
  end
 | 
					  end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  rescue_from ActiveRecord::RecordNotUnique do
 | 
				
			||||||
 | 
					    render json: { error: 'Duplicate record' }, status: 422
 | 
				
			||||||
 | 
					  end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  rescue_from ActiveRecord::RecordNotFound do
 | 
					  rescue_from ActiveRecord::RecordNotFound do
 | 
				
			||||||
    render json: { error: 'Record not found' }, status: 404
 | 
					    render json: { error: 'Record not found' }, status: 404
 | 
				
			||||||
  end
 | 
					  end
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue