MCPcopy
hub / github.com/fastapi/full-stack-fastapi-template / createUser

Function createUser

frontend/tests/utils/privateApi.ts:7–22  ·  view source on GitHub ↗
({
  email,
  password,
}: {
  email: string
  password: string
})

Source from the content-addressed store, hash-verified

5OpenAPI.BASE = `${process.env.VITE_API_URL}`
6
7export const createUser = async ({
8 email,
9 password,
10}: {
11 email: string
12 password: string
13}) => {
14 return await PrivateService.createUser({
15 requestBody: {
16 email,
17 password,
18 is_verified: true,
19 full_name: "Test User",
20 },
21 })
22}

Callers 3

items.spec.tsFile · 0.90
admin.spec.tsFile · 0.90

Calls 1

createUserMethod · 0.45

Tested by

no test coverage detected