Add redirection on unavailable video due to follow constraints

This commit is contained in:
Chocobozzz 2020-08-26 09:14:14 +02:00
parent ca00baa75a
commit e6abf95e9f
No known key found for this signature in database
GPG key ID: 583A612D890159BE
4 changed files with 41 additions and 18 deletions

View file

@ -7,4 +7,5 @@ export * from './emailer.model'
export * from './job.model'
export * from './log-level.type'
export * from './server-config.model'
export * from './server-error-code.enum'
export * from './server-stats.model'

View file

@ -0,0 +1,3 @@
export const enum ServerErrorCode {
DOES_NOT_RESPECT_FOLLOW_CONSTRAINTS = 1
}