Only show the created avatar attachment type for user attachments

This commit is contained in:
Jan Böhmer 2026-02-08 19:31:45 +01:00
parent a4c2b8f885
commit 90c82aab2e
2 changed files with 2 additions and 1 deletions

View file

@ -154,6 +154,7 @@ class UserAvatarHelper
$attachment_type = new AttachmentType();
$attachment_type->setName('Avatars');
$attachment_type->setFiletypeFilter('image/*');
$attachment_type->setAllowedTargets([UserAttachment::class]);
$this->entityManager->persist($attachment_type);
}