scinote-web/app/controllers/client_api/users/users_controller.rb
2017-08-25 08:21:52 +02:00

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