Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ notification.contents = {
notification.headings = {
en: "Gig'em Ags"
}
const notification = await client.createNotification(notification);
const createdNotification = await client.createNotification(notification);
```
### Creating a notification using Filters
Sends a notification to your users filtered by specific criteria.
Expand Down Expand Up @@ -186,7 +186,7 @@ notification.filters = [
},
];

const notification = await client.createNotification(notification);
const createdNotification = await client.createNotification(notification);
```

### Canceling a notification
Expand Down