Files
old-holivud2/app/controllers/api/profiles_controller.rb

6 lines
105 B
Ruby
Raw Normal View History

2020-05-31 22:38:19 +02:00
class Api::ProfilesController < Api::ApiController
def show
render jsonapi: current_user
end
end