bus-detective/bus-detective

View on GitHub
app/controllers/api_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class ApiController < ApplicationController
  rescue_from ActiveRecord::RecordNotFound do
    render json: { errors: "not found" }, status: 404
  end
end