feat(client): slider picker shows only resized images

chore(server): remove unused gallery.js
This commit is contained in:
Kirill
2026-05-17 18:20:57 +05:00
parent f0365d0b98
commit d18546c45a
2 changed files with 1 additions and 13 deletions
-12
View File
@@ -1,12 +0,0 @@
import { prisma } from './prisma.js'
/** Регистрация загруженных путей в медиатеке (идемпотентно). */
export async function upsertGalleryImagesByUrls(urls) {
for (const url of urls) {
await prisma.galleryImage.upsert({
where: { url },
create: { url },
update: {},
})
}
}