chore: prep platform improvements

This commit is contained in:
Esdras Renan 2025-11-09 21:09:38 -03:00
parent a62f3d5283
commit c5ddd54a3e
24 changed files with 777 additions and 649 deletions

View file

@ -211,8 +211,7 @@ async function ensureQueue(
const byName = await ctx.db
.query("queues")
.withIndex("by_tenant", (q) => q.eq("tenantId", tenantId))
.filter((q) => q.eq(q.field("name"), data.name))
.withIndex("by_tenant_name", (q) => q.eq("tenantId", tenantId).eq("name", data.name))
.first()
if (byName) {
if (byName.slug !== slug) {