luckybooru/src/actions/api/me/show.cr

6 lines
103 B
Crystal

class Api::Me::Show < ApiAction
get "/api/me" do
json UserSerializer.new(current_user)
end
end