Skip to content

Instantly share code, notes, and snippets.

@orangeeli
Last active July 15, 2016 16:51
Show Gist options
  • Select an option

  • Save orangeeli/138c0b79640a5a7dcd0b391be9cc88ee to your computer and use it in GitHub Desktop.

Select an option

Save orangeeli/138c0b79640a5a7dcd0b391be9cc88ee to your computer and use it in GitHub Desktop.
The person controller in an API context
module Api
module V1
class GorillaController < ApplicationController
def index
@gorillas = Gorilla.all
render json: {message: 'We are not extinct. Just well hidden.'}
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment