mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-12-24 19:11:44 +01:00
20 lines
272 B
JavaScript
20 lines
272 B
JavaScript
const DownloadStatus = {
|
|
PENDING: 0,
|
|
READY: 1,
|
|
EXPIRED: 2,
|
|
FAILED: 3
|
|
}
|
|
|
|
const CoverDestination = {
|
|
METADATA: 0,
|
|
AUDIOBOOK: 1
|
|
}
|
|
|
|
const Constants = {
|
|
DownloadStatus,
|
|
CoverDestination
|
|
}
|
|
|
|
export default ({ app }, inject) => {
|
|
inject('constants', Constants)
|
|
} |