Skip to content

Commit 6057eed

Browse files
committed
refactor: clean up
1 parent 49d39ee commit 6057eed

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

sources/platform/collaboration/general-resource-access.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -177,14 +177,14 @@ The link will include a signature _only if the general resource access is set to
177177

178178
:::
179179

180-
##### Dataset items:
180+
##### Dataset items
181181

182182
1. Click the **Export** button.
183183
2. In the modal that appears, click **Copy shareable link**.
184184

185185
![Generating shareable link for a restricted storage resource](./images/general-resouce-access/copy-shareable-link.png)
186186

187-
##### Key-value store records:
187+
##### Key-value store records
188188

189189
1. Open a key-value store.
190190
2. Navigate to the record you want to share.
@@ -196,7 +196,7 @@ The link will include a signature _only if the general resource access is set to
196196

197197
You can generate pre-signed URLs programmatically for datasets and key-value stores:
198198

199-
##### Dataset items:
199+
##### Dataset items
200200

201201
```js
202202
import { ApifyClient } from "apify-client";
@@ -210,7 +210,7 @@ const itemsUrl = await datasetClient.createItemsPublicUrl({ expiresInSecs: 7 * 2
210210
const permanentItemsUrl = await datasetClient.createItemsPublicUrl();
211211
```
212212

213-
##### Key-value store list of keys:
213+
##### Key-value store list of keys
214214

215215
```js
216216
const storeClient = client.keyValueStore('my-store-id');
@@ -222,7 +222,7 @@ const keysPublicUrl = await storeClient.createKeysPublicUrl({ expiresInSecs: 24
222222
const permanentKeysPublicUrl = await storeClient.createKeysPublicUrl();
223223
```
224224

225-
##### Key-value store record:
225+
##### Key-value store record
226226

227227
```js
228228
// Get permanent URL for a single record

0 commit comments

Comments
 (0)