See #432: enforce a maximum number of tags per entity

This commit is contained in:
Eliot Berriot 2019-07-15 11:53:58 +02:00
parent bd271c8ead
commit 1b34ae2335
No known key found for this signature in database
GPG key ID: DD6965E2476E5C27
5 changed files with 57 additions and 0 deletions

View file

@ -716,3 +716,6 @@ ACTOR_KEY_ROTATION_DELAY = env.int("ACTOR_KEY_ROTATION_DELAY", default=3600 * 48
SUBSONIC_DEFAULT_TRANSCODING_FORMAT = (
env("SUBSONIC_DEFAULT_TRANSCODING_FORMAT", default="mp3") or None
)
# extra tags will be ignored
TAGS_MAX_BY_OBJ = env.int("TAGS_MAX_BY_OBJ", default=30)