VichUploader organizer logo: - Add organizer_logo mapping with local Flysystem storage - Add logoFile, logoName, updatedAt fields to User entity - Use Vich Attribute (not deprecated Annotation) - Add migration for logo_name and updated_at columns Meilisearch organizer search: - Add search bar on /admin/organisateurs page (hides tabs during search) - Index organizers in Meilisearch on approval - Sync button on dashboard now syncs both buyers and organizers - Add tests: search query, search error Liip Imagine webp: - Add format filter to all filter_sets for explicit webp conversion - Add organizer_logo filter_set (400x400, webp) - Create WebpExtensionSubscriber to rewrite image URLs to .webp extension - 8 tests for subscriber (png, jpg, jpeg, gif, webp passthrough, case insensitive, null) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
21 lines
668 B
YAML
21 lines
668 B
YAML
vich_uploader:
|
|
db_driver: orm
|
|
metadata:
|
|
type: attribute
|
|
storage: flysystem
|
|
|
|
mappings:
|
|
event_image:
|
|
uri_prefix: '%env(S3_ENDPOINT)%/%env(S3_BUCKET)%/uploads/events'
|
|
upload_destination: default.storage
|
|
namer: Vich\UploaderBundle\Naming\SmartUniqueNamer
|
|
directory_namer:
|
|
service: Vich\UploaderBundle\Naming\CurrentDateDirectoryNamer
|
|
options:
|
|
date_time_format: 'Y/m'
|
|
|
|
organizer_logo:
|
|
uri_prefix: /uploads/logos
|
|
upload_destination: logos.storage
|
|
namer: Vich\UploaderBundle\Naming\SmartUniqueNamer
|