Tweak max artwork string length and max tags

This commit is contained in:
Alex Cabal 2024-01-12 11:04:01 -06:00
parent fcc8bbbee7
commit 03821d6ad1

View file

@ -45,8 +45,8 @@ const COVER_ARTWORK_STATUS_APPROVED = 'approved';
const COVER_ARTWORK_STATUS_DECLINED = 'declined'; const COVER_ARTWORK_STATUS_DECLINED = 'declined';
const COVER_ARTWORK_STATUS_IN_USE = 'in_use'; const COVER_ARTWORK_STATUS_IN_USE = 'in_use';
const COVER_ARTWORK_STATUS_UNVERIFIED = 'unverified'; const COVER_ARTWORK_STATUS_UNVERIFIED = 'unverified';
const COVER_ARTWORK_MAX_STRING_LENGTH = 191; const COVER_ARTWORK_MAX_STRING_LENGTH = 250;
const COVER_ARTWORK_MAX_TAGS = 100; const COVER_ARTWORK_MAX_TAGS = 15;
const COVER_ARTWORK_IMAGE_MINIMUM_WIDTH = 300; const COVER_ARTWORK_IMAGE_MINIMUM_WIDTH = 300;
const COVER_ARTWORK_IMAGE_MINIMUM_HEIGHT = 300; const COVER_ARTWORK_IMAGE_MINIMUM_HEIGHT = 300;
const SORT_COVER_ARTWORK_CREATED_NEWEST = 'created-newest'; const SORT_COVER_ARTWORK_CREATED_NEWEST = 'created-newest';