When I try to use createEmailPasswordSession()
I get this error appearing in the logs each time:
[Error] Timestamp: 2024-03-08T22:48:05+00:00
[Error] Method: POST
[Error] URL: /v1/account/sessions/email
[Error] Type: Utopia\Database\Exception\Structure
[Error] Message: Invalid document structure: Unknown attribute: "factors"
[Error] File: /usr/src/code/vendor/utopia-php/database/src/Database/Database.php
[Error] Line: 3070
I did the migrations and they didn't throw up and errors at the time
What does the attribute look like in the collection?
I'm not sure how I'd view the collection for auth?
Recommended threads
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...
- Send Email Verification With REST
I am using REST to create a user on the server side after receiving form data from the client. After the account is successfully created i wanted to send the v...
- Use different email hosts for different ...
Hello, I have 2 projects and i want to be able to set up email templates in the projects. Both projects will have different email host configurations. I see ...