Skip to content
Open
Show file tree
Hide file tree
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: 4 additions & 0 deletions docs/specs/clients/notify/data-structures.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@
icon: string | null,
// Redirect URL for call-to-action related to notification. If null, there is no link
url: string | null,
// Arbitrary custom data set by the sender of the notification
data: string | null,
}
```

Expand All @@ -55,6 +57,8 @@
icon: string,
// Redirect URL for call-to-action related to notification. If empty, there is no link
url: string,
// Arbitrary custom data set by the sender of the notification
data: string | null,
}
```

Expand Down
1 change: 1 addition & 0 deletions docs/specs/servers/notify/notify-server-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Body:
"icon": string,
"url": string,
"type": string,
"data": string,
},
"accounts": Account[],
}
Expand Down