mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
22 lines
583 B
Python
22 lines
583 B
Python
from royalnet.utils import *
|
|
from royalnet.backpack.tables import *
|
|
from royalnet.constellation.api import *
|
|
from ..utils import find_user_api
|
|
|
|
|
|
class ApiBioGetStar(ApiStar):
|
|
path = "/api/bio/get/v1"
|
|
|
|
summary = "Get the bio of a Royalnet user."
|
|
|
|
parameters = {
|
|
"id": "The user to get the bio of."
|
|
}
|
|
|
|
tags = ["bio"]
|
|
|
|
async def api(self, data: ApiData) -> dict:
|
|
user = await find_user_api(data["id"], self.alchemy, data.session)
|
|
if user.bio is None:
|
|
raise NotFoundError("User has no bio set.")
|
|
return user.bio.json()
|