aboutsummaryrefslogtreecommitdiff
path: root/src/actions/api/me/show.cr
blob: 00602713bf2080f6a1a4acd219bf77c1b5fd3dd2 (plain)
1
2
3
4
5
class Api::Me::Show < ApiAction
  get "/api/me" do
    json UserSerializer.new(current_user)
  end
end