Function
user_create
(session: SessionDep, creator: UserCreator, trans: Trans)
Source from the content-addressed store, hash-verified
| 171 | result_id_expr="id" |
| 172 | )) |
| 173 | async def user_create(session: SessionDep, creator: UserCreator, trans: Trans): |
| 174 | return await create(session=session, creator=creator, trans=trans) |
| 175 | |
| 176 | async def create(session: SessionDep, creator: UserCreator, trans: Trans): |
| 177 | if check_account_exists(session=session, account=creator.account): |
Callers
nothing calls this directly
Tested by
no test coverage detected