mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-27 21:10:54 +00:00
17 lines
384 B
Ruby
17 lines
384 B
Ruby
class Api::V1::UsersController < Api::V1::BaseController
|
|
def index
|
|
render json: Api::V1::UsersCollection.as_json
|
|
end
|
|
|
|
def show
|
|
@user = User.find(params[:id])
|
|
@steam = SteamCondenser::Community::SteamId.from_steam_id("STEAM_#{@user.steamid}")
|
|
|
|
render json: {
|
|
steam: {
|
|
url: @steam.base_url,
|
|
nickname: @steam.nickname
|
|
}
|
|
}
|
|
end
|
|
end
|