Skip to content

Commit 7413720

Browse files
committed
Fix nits from code review
1 parent 1f40484 commit 7413720

File tree

1 file changed

+2
-2
lines changed
  • sources/platform/actors/development/permissions

1 file changed

+2
-2
lines changed

sources/platform/actors/development/permissions/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,13 @@ Whenever possible, design your Actors to use limited permissions and request onl
6767

6868
### Accessing user provided storages
6969

70-
By default, limited-permissions Actors can't access users storages. However, they can access storages that users explicitly provide via the Actor input. To do so, use the input schema to add a storage picker and declare exactly which operations your Actor needs.
70+
By default, limited-permissions Actors can't access user storages. However, they can access storages that users explicitly provide via the Actor input. To do so, use the input schema to add a storage picker and declare exactly which operations your Actor needs.
7171

7272
- Add a field with `editor: "resourcePicker"`.
7373
- Set `resourceType` to one of `dataset`, `keyValueStore`, or `requestQueue`.
7474
- Specify `resourcePermissions` with the minimal required scope: `"READ"` or `"READ", "WRITE"`.
7575

76-
Actors running under full permissions are assumed to have full (i.e. read/write/manage) access to user storages, in that case the `resourcePermissions` field does not have to be set.
76+
Actors running under full permissions are assumed to have full (i.e. read/write/manage) access to user storages. In that case the `resourcePermissions` field does not have to be set.
7777

7878
Example input schema field (single resource):
7979

0 commit comments

Comments
 (0)