6 lines
105 B
Ruby
6 lines
105 B
Ruby
class Api::ProfilesController < Api::ApiController
|
|
def show
|
|
render jsonapi: current_user
|
|
end
|
|
end
|