Skip to content

Commit 9bcd7f2

Browse files
authored
Merge pull request #30 from segmentio/repo-sync
repo sync
2 parents 2c5d8b4 + ab41875 commit 9bcd7f2

File tree

2 files changed

+10
-1
lines changed
  • src

2 files changed

+10
-1
lines changed

src/_data/sidenav/main.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,8 @@ sections:
263263
title: Overview
264264
- path: /personas/audiences/account-audiences
265265
title: Account-Level Audiences
266+
- path: /personas/audiences/organization/
267+
title: Organizing Audiences
266268
- section_title: Journeys
267269
slug: /personas/journeys
268270
section:
@@ -286,6 +288,8 @@ sections:
286288
title: Personas and Warehouses
287289
- path: /personas/profile-api
288290
title: Profile API
291+
- path: /personas/debugger
292+
title: Personas Space Debugger
289293
- path: /personas/personas-gdpr
290294
title: Personas and GDPR
291295
- path: /personas/faqs

src/connections/sources/catalog/libraries/server/node/index.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,8 @@ The second argument to the `Analytics` constructor is an optional dictionary of
330330
```javascript
331331
var analytics = new Analytics('YOUR_WRITE_KEY', {
332332
flushAt: 20,
333-
flushInterval: 10000
333+
flushInterval: 10000,
334+
enable: false
334335
});
335336
```
336337

@@ -343,6 +344,10 @@ var analytics = new Analytics('YOUR_WRITE_KEY', {
343344
<td>`flushInterval` _Number_</td>
344345
<td>The number of milliseconds to wait before flushing the queue automatically.</td>
345346
</tr>
347+
<tr>
348+
<td>`enable` _Boolean_</td>
349+
<td>Enable (default) or disable flush. Useful when writing tests and you do not want to send data to Segment Servers.</td>
350+
</tr>
346351
</table>
347352

348353

0 commit comments

Comments
 (0)