You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,13 +32,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
32
32
- Health service with 24 methods
33
33
- Locale service with 8 methods
34
34
- Messaging service with 56 methods
35
-
- Project service with 25 methods
35
+
- Project service with 26 methods
36
36
- Sites service with 25 methods
37
37
- Storage service with 13 methods
38
38
- TablesDB service with 69 methods
39
39
- Teams service with 13 methods
40
40
- Tokens service with 5 methods
41
-
- Users service with 48 methods
41
+
- Users service with 49 methods
42
42
- Webhooks service with 6 methods
43
43
44
44
### Services
@@ -439,6 +439,7 @@ The Project service allows you to manage all the projects in your Appwrite serve
439
439
-`get_key()` - Get a key by its unique ID.
440
440
-`update_key()` - Update a key by its unique ID. Use this endpoint to update the name, scopes, or expiration time of an API key.
441
441
-`delete_key()` - Delete a key by its unique ID. Once deleted, the key can no longer be used to authenticate API calls.
442
+
-`update_labels()` - Update the project labels. Labels can be used to easily filter projects in an organization.
442
443
-`list_platforms()` - Get a list of all platforms in the project. This endpoint returns an array of all platforms and their configurations.
443
444
-`create_android_platform()` - Create a new Android platform for your project. Use this endpoint to register a new Android platform where your users will run your application which will interact with the Appwrite API.
444
445
-`update_android_platform()` - Update an Android platform by its unique ID. Use this endpoint to update the platform's name or application ID.
@@ -668,6 +669,9 @@ The Users service allows you to manage your project users.
668
669
-`update_impersonator()` - Enable or disable whether a user can impersonate other users. When impersonation headers are used, the request runs as the target user for API behavior, while internal audit logs still attribute the action to the original impersonator and store the impersonated target details only in internal audit payload data.
669
670
670
671
-`create_jwt()` - Use this endpoint to create a JSON Web Token for user by its unique ID. You can use the resulting JWT to authenticate on behalf of the user. The JWT secret will become invalid if the session it uses gets deleted.
672
+
-`update_labels()` - Update the user labels by its unique ID.
673
+
674
+
Labels can be used to grant access to resources. While teams are a way for user's to share access to a resource, labels can be defined by the developer to grant access without an invitation. See the [Permissions docs](https://appwrite.io/docs/permissions) for more info.
671
675
-`list_logs()` - Get the user activity logs list by its unique ID.
672
676
-`list_memberships()` - Get the user membership list by its unique ID.
673
677
-`update_mfa()` - Enable or disable MFA on a user account.
0 commit comments