Allow collections with the same name

This commit is contained in:
Isaac Wise
2024-02-18 03:32:31 -06:00
parent 79bd95f650
commit f560422427
6 changed files with 67 additions and 40 deletions
+2 -5
View File
@@ -88,14 +88,11 @@ export default async function postLink(
collection: {
connectOrCreate: {
where: {
name_ownerId: {
ownerId: link.collection.ownerId,
name: link.collection.name,
},
id: link.collection.id ?? 0,
},
create: {
name: link.collection.name.trim(),
ownerId: userId,
ownerId: userId
},
},
},