Hello, I'm new to appwrite. I'm searching for a way to assign teams to users without sending invitation code. Unfortunately didn't find anything , isn't there a proper way to do this?
You can do this with a server SDK and API key in an Appwrite Function
In my project you can see a example of how implement it
How can we do so? I only find calls to create a team membership via email invitation and update the status with the secret string sent by mail. Am I missing something?
When using the same method with the Server side SDK then no email will be send to the user and the user will be add to the team automatically.
You can ignore url parameter in the server side by setting to any url
Recommended threads
- Impossible to get USER after createEmail...
Am using provider to deal with functions linked to appwrite. Here is my login. Future<String?> login(String email, String password) async { try { aw...
- 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...
- Flutter Android oAuth is no more working
I currently don't get the oAuth login to work in flutter android. it works on ios and on web. but when try to use it on Android, i get to the point where the ca...