Merge pull request #40 from MerlinScheurer/add_notification_api

Add notification api
This commit is contained in:
lamusmaser 2024-05-13 08:12:32 -06:00 committed by GitHub
commit 738a0f0454
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -140,3 +140,30 @@ When valid returns message with user id and TubeArchivist version:
"version": "v0.4.7"
}
```
## Notification List
Get all current notifications.
**GET** `/api/notification/`
Parameter:
- filter: "download" | "settings" | "channel"
```json
[
{
"title": "Rescan your Subscriptions",
"group": "download:scan",
"api-start": true,
"api-stop": true,
"level": "info",
"id": "1111111-1111-1111-1111-1111111",
"command": false,
"messages": ["Task completed successfully"],
"progress": 0.000001
}
]
```
"command" can be false || "STOP" || "KILL".