mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
16 lines
530 B
Python
16 lines
530 B
Python
|
from starlette.requests import Request
|
||
|
from starlette.responses import *
|
||
|
from royalnet.web import *
|
||
|
from royalnet.utils import *
|
||
|
from royalnet.packs.common.tables import User
|
||
|
|
||
|
|
||
|
class ApiUserListStar(PageStar):
|
||
|
path = "/api/user/list"
|
||
|
tables = {User}
|
||
|
|
||
|
async def page(self, request: Request) -> JSONResponse:
|
||
|
async with self.alchemy.session_acm() as session:
|
||
|
users: typing.List[User] = await asyncify(session.query(self.alchemy.User).all)
|
||
|
return JSONResponse([user.json() for user in users])
|