Last active
November 11, 2016 22:31
-
-
Save memaker/4e32706d3ee6ed6503243d4da5c1d5ed to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# app/controller/api/v1/user_controller.rb | |
class Api::V1::UsersController < ApplicationController | |
def index | |
@users = User.all | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment