Scan for covers now saves covers, server settings to save covers in audiobook folder

This commit is contained in:
advplyr 2021-10-01 20:29:00 -05:00
parent 28cbe0a95c
commit 509d9e5e03
9 changed files with 83 additions and 31 deletions

View file

@ -5,8 +5,14 @@ const DownloadStatus = {
FAILED: 3
}
const CoverDestination = {
METADATA: 0,
AUDIOBOOK: 1
}
const Constants = {
DownloadStatus
DownloadStatus,
CoverDestination
}
export default ({ app }, inject) => {