mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-04 22:19:07 +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
|