From 95e02dcd6342d7e4601271e66002224bc05d212e Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Fri, 31 Jul 2026 22:54:41 +0100 Subject: [PATCH] Add thumbnail property to User model for image handling - Introduced a new 'thumbnail' property in the User model to enable thumbnail support for image rendering. - This enhancement improves the visual representation of user-related images in the application. --- src/database/models/User.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/database/models/User.js b/src/database/models/User.js index ef32ddc..99fc29c 100644 --- a/src/database/models/User.js +++ b/src/database/models/User.js @@ -116,6 +116,7 @@ export const User = { fileType: 'image', previewOpen: true, showPreview: false, + thumbnail: true, columnWidth: 150, masterFilter: ['.png', '.jpg', '.jpeg'] }