mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-08 16:06:03 +08:00
15 lines
315 B
Ruby
15 lines
315 B
Ruby
|
module ClientApi
|
||
|
class UsersController < ApplicationController
|
||
|
|
||
|
def current_user_info
|
||
|
respond_to do |format|
|
||
|
format.json do
|
||
|
render template: '/client_api/users/show',
|
||
|
status: :ok,
|
||
|
locals: { user: current_user }
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|