mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-08 00:23:01 +08:00
16 lines
356 B
Ruby
16 lines
356 B
Ruby
module ClientApi
|
|
module Users
|
|
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
|
|
end
|