Skip to content

Commit 15f087d

Browse files
committed
fix: for appwrite 1.4.x
1 parent 193a1c3 commit 15f087d

File tree

13 files changed

+224
-213
lines changed

13 files changed

+224
-213
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Add this to your package's `pubspec.yaml` file:
2121

2222
```yml
2323
dependencies:
24-
appwrite: ^10.0.0
24+
appwrite: ^10.0.1
2525
```
2626
2727
You can install packages from the command line:

lib/role.dart

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,9 @@ class Role {
5858
static String member(String id) {
5959
return 'member:$id';
6060
}
61+
62+
/// Grants access to a user with the specified label.
63+
static String label(String name) {
64+
return 'label:$name';
65+
}
6166
}

0 commit comments

Comments
 (0)