mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-06-21 04:15:46 +02:00
26 lines
357 B
JavaScript
26 lines
357 B
JavaScript
|
const DownloadStatus = {
|
||
|
PENDING: 0,
|
||
|
READY: 1,
|
||
|
EXPIRED: 2,
|
||
|
FAILED: 3
|
||
|
}
|
||
|
|
||
|
const CoverDestination = {
|
||
|
METADATA: 0,
|
||
|
AUDIOBOOK: 1
|
||
|
}
|
||
|
|
||
|
const BookCoverAspectRatio = {
|
||
|
STANDARD: 0,
|
||
|
SQUARE: 1
|
||
|
}
|
||
|
|
||
|
const Constants = {
|
||
|
DownloadStatus,
|
||
|
CoverDestination,
|
||
|
BookCoverAspectRatio
|
||
|
}
|
||
|
|
||
|
export default ({ app }, inject) => {
|
||
|
inject('constants', Constants)
|
||
|
}
|