adding more functions to media managament system
This commit is contained in:
parent
95e62c2d77
commit
70c0ba44f0
30 changed files with 1494 additions and 104 deletions
|
|
@ -9,6 +9,11 @@ var (
|
|||
ErrFilePartsInvalid = errors.New("file parts invalid")
|
||||
ErrFilePartTooBig = errors.New("file part too big")
|
||||
ErrUploadQuotaExceeded = errors.New("upload quota exceeded")
|
||||
// ErrFileTooLarge is returned when a file's total assembled size (sum of
|
||||
// all its parts, not any single part) exceeds the configured
|
||||
// TELESRV_STORAGE_MAX_UPLOAD_FILE_BYTES ceiling. Distinct from
|
||||
// ErrFilePartTooBig, which is a single oversized part.
|
||||
ErrFileTooLarge = errors.New("file too large")
|
||||
ErrPhotoInvalid = errors.New("photo invalid")
|
||||
ErrDocumentInvalid = errors.New("document invalid")
|
||||
// ErrStorageFull is returned when the configured low-space guard rejects a
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue