Can someone show me how to pass permission parameter for teams and role in command line. I can find it nowhere in the documentation.
I tried this "appwrite databases createCollection --databaseId 6510add9771bcf260b40 --collectionId "unique()" --name test3 --permissions 'create("any")' --permissions 'create("team("651b3769cb0eae4aff5b")' " but it is not working. An example with role also will be nice. Thanks in advance.
Summary
Issue: The user is seeking help on how to pass permission parameters for teams and roles using the Appwrite CLI. They have provided a command they tried, but it is not working.
Solution: The user received a solution from another user. The correct way to pass permission parameters for teams and roles is shown. Use the following format:
`--permissions 'create("any")' 'create("team:651b3769cb0eae4aff5b")'`
Additionally, the user thanked the community for their help.