Merge pull request #3407 from agraubert/patch-1

Default deny explicit content to users
This commit is contained in:
advplyr 2024-09-13 13:24:12 -05:00 committed by GitHub
commit 5c49a8ce6a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -107,7 +107,7 @@ class User extends Model {
upload: type === 'root' || type === 'admin',
accessAllLibraries: true,
accessAllTags: true,
accessExplicitContent: true,
accessExplicitContent: type === 'root' || type === 'admin',
selectedTagsNotAccessible: false,
librariesAccessible: [],
itemTagsSelected: []