mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-12-27 09:08:57 +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)
|
|
} |