bus-detective/bus-detective

View on GitHub
app/controllers/api/shapes_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Api::ShapesController < ApiController

  def show
    render json: Shape.find_by_id(params[:id])
  end
end