fga-gpp-mds/2017.1-Escola-X

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

Summary

Maintainability
A
0 mins
Test Coverage
class Api::StrikesController < ApplicationController
  respond_to :json

  def index
    respond_with Strike.all
  end

  def show
    respond_with Strike.find(params[:id])
  end
end