Skip to content

Instantly share code, notes, and snippets.

@scaffeinate
Last active June 8, 2016 10:48
Show Gist options
  • Save scaffeinate/4e28ca3e9d6d0c80b86b8e8e3f5a7ad1 to your computer and use it in GitHub Desktop.
Save scaffeinate/4e28ca3e9d6d0c80b86b8e8e3f5a7ad1 to your computer and use it in GitHub Desktop.
Api users controller
module Api::V1
class UsersController < ApplicationController
def show
@user = User.find_by(email: params[:email])
render json: @user
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment