mirror of
https://github.com/System-End/cdn.git
synced 2026-04-19 22:05:13 +00:00
15 lines
289 B
Ruby
15 lines
289 B
Ruby
# frozen_string_literal: true
|
|
|
|
module API
|
|
module V4
|
|
class UsersController < ApplicationController
|
|
def show
|
|
render json: {
|
|
id: current_user.public_id,
|
|
email: current_user.email,
|
|
name: current_user.name
|
|
}
|
|
end
|
|
end
|
|
end
|
|
end
|