mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-01-03 00:06:46 +01:00
14 lines
192 B
JavaScript
14 lines
192 B
JavaScript
|
const DownloadStatus = {
|
||
|
PENDING: 0,
|
||
|
READY: 1,
|
||
|
EXPIRED: 2,
|
||
|
FAILED: 3
|
||
|
}
|
||
|
|
||
|
const Constants = {
|
||
|
DownloadStatus
|
||
|
}
|
||
|
|
||
|
export default ({ app }, inject) => {
|
||
|
inject('constants', Constants)
|
||
|
}
|