foodsoft/app/controllers/api/v1/users_controller.rb

8 lines
110 B
Ruby
Raw Normal View History

2018-10-13 15:15:43 +02:00
class Api::V1::UsersController < Api::V1::BaseController
def show
render json: current_user
end
end