Skip to content

Instantly share code, notes, and snippets.

@guilleiguaran
Created August 14, 2014 14:54
Show Gist options
  • Save guilleiguaran/97da38df1dc6f71b44cd to your computer and use it in GitHub Desktop.
Save guilleiguaran/97da38df1dc6f71b44cd to your computer and use it in GitHub Desktop.
class UsersController < ApplicationController
def index
@users = User.all
respond_to do |format|
format.json{ render json: @users }
format.capn{ render capn: @users }
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment