theseus/app/controllers/api/v1/users_controller.rb
2025-05-31 23:25:41 -04:00

10 lines
No EOL
155 B
Ruby

module API
module V1
class UsersController < ApplicationController
def show
@user = authorize current_user
end
end
end
end