mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-06 07:33:04 +08:00
14 lines
315 B
Ruby
14 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
|