Set organised flag in gallery create (#6418)

This commit is contained in:
WithoutPants 2025-12-17 17:13:03 +11:00 committed by GitHub
parent 5b62cc66d4
commit af11189718
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -49,6 +49,7 @@ func (r *mutationResolver) GalleryCreate(ctx context.Context, input GalleryCreat
newGallery.Details = translator.string(input.Details)
newGallery.Photographer = translator.string(input.Photographer)
newGallery.Rating = input.Rating100
newGallery.Organized = translator.bool(input.Organized)
var err error