feat(client): slider picker shows only resized images
chore(server): remove unused gallery.js
This commit is contained in:
@@ -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: {},
|
||||
})
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user