mirror of
https://github.com/tubearchivist/docs.git
synced 2025-04-05 11:40:13 +00:00
Merge branch 'tubearchivist:master' into master
This commit is contained in:
commit
ca60d21a3d
38
mkdocs/docs/api/backup.md
Normal file
38
mkdocs/docs/api/backup.md
Normal file
@ -0,0 +1,38 @@
|
||||
# Backup
|
||||
|
||||
Index [snapshots](snapshot.md) are a more reliable way than zip file backup as described here.
|
||||
|
||||
## Backup List
|
||||
**GET** `/api/backup/`
|
||||
Return a list of available backup files with metadata.
|
||||
|
||||
**POST** `/api/backup/`
|
||||
Start a backup task now. This will return immediately, triggering an async task in the background. The message will contain a `task_id` key that can be monitored separately.
|
||||
|
||||
Example return message:
|
||||
```json
|
||||
{
|
||||
"message": "backup task started",
|
||||
"task_id": "f22f6981-35bb-4b7c-bd91-80a57d960b52"
|
||||
}
|
||||
```
|
||||
|
||||
## Backup Item
|
||||
**GET** `/api/backup/<filename>/`
|
||||
Return metadata of a single backup file.
|
||||
|
||||
**POST** `/api/backup/<filename>/`
|
||||
Start a backup restore task now. This will return immediately, triggering an async task in the background. The message will contain a `task_id` key that can be monitored separately.
|
||||
|
||||
Example return message:
|
||||
|
||||
```json
|
||||
{
|
||||
"message": "backup restore task started",
|
||||
"filename": "ta_backup-20231101-auto.zip",
|
||||
"task_id": "4fc2afdf-4045-4288-a33c-e3267a9efb5a"
|
||||
}
|
||||
```
|
||||
|
||||
**DELETE** `/api/backup/<filename>/`
|
||||
Delete backup file from the filesystem.
|
18
mkdocs/docs/api/config.md
Normal file
18
mkdocs/docs/api/config.md
Normal file
@ -0,0 +1,18 @@
|
||||
# Config
|
||||
|
||||
## User Config
|
||||
Per user modified config values.
|
||||
|
||||
**GET** `/api/config/user/`
|
||||
Return all config values *modified* by user.
|
||||
|
||||
**POST** `/api/config/user/`
|
||||
Modify one or more config values. For possible key, values, see `UserConfig` class.
|
||||
|
||||
Example post data:
|
||||
```json
|
||||
{
|
||||
"colors": "dark",
|
||||
"page_size": 20
|
||||
}
|
||||
```
|
@ -37,8 +37,10 @@ nav:
|
||||
- 'Playlist': 'api/playlist.md'
|
||||
- 'Download': 'api/download.md'
|
||||
- 'Snapshot': 'api/snapshot.md'
|
||||
- 'Backup': 'api/backup.md'
|
||||
- 'Task': 'api/task.md'
|
||||
- 'Stats': 'api/stats.md'
|
||||
- 'Config': 'api/config.md'
|
||||
- 'Additional': 'api/additional.md'
|
||||
- Links:
|
||||
- 'Main site': https://www.tubearchivist.com
|
||||
|
Loading…
Reference in New Issue
Block a user