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

8 lines
141 B
Ruby
Raw Normal View History

2025-01-20 09:17:56 -05:00
# frozen_string_literal: true
class Api::V1::UsersController < ApiController
def me
render json: { user: current_api_user }
end
end