Skip to content

Instantly share code, notes, and snippets.

@zedtux
Created March 7, 2018 13:07
Show Gist options
  • Save zedtux/3107ac6deb1401c7b81763ac16613d2e to your computer and use it in GitHub Desktop.
Save zedtux/3107ac6deb1401c7b81763ac16613d2e to your computer and use it in GitHub Desktop.
The most simple Rails API ever
class UsersController < ApplicationController
def index
render json: User.all
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment