In my app I have a CreateUser flow which makes several documents and at the end uses the functions.createExecution() to call a server-side function to create a document in a management table (so the user shouldn't have any permissions to read/write/update/delete; completely out of scope). Every step in the creation flow works up until the function call, the function log gives a 500 error with this as the reason (Database error: The current user is not authorized to perform the requested action.). Does this mean it is a function scope error, or what? The user shouldn't have/need permission to access creation for that table. The function's scope has access to create for it, so I'm so confused. Any help would be appreciated!
Recommended threads
- Weird permission failure
when creating an account I use following methods: ``` Future<void> register(String email, String password, String username) async { final user = await accoun...
- Function domain not available
Hello, even tho in docs you clearly describe that every function has its domain, I can not see it anywhere in any of my projects. How do I reveal the url of th...
- Inquiry: How to Reduce Cold Start Durati...
Hey! I was using Python for the function runtime, but after reading that Go has the fastest runtime, I switched my code over to Go. However, I'm still seeing co...