dawarich/app/controllers/api/v1/users_controller.rb
2025-07-13 12:50:24 +02:00

7 lines
161 B
Ruby

# frozen_string_literal: true
class Api::V1::UsersController < ApiController
def me
render json: Api::UserSerializer.new(current_api_user).call
end
end