mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-06-20 20:05:44 +02:00
26 lines
No EOL
357 B
JavaScript
26 lines
No EOL
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)
|
|
} |