add branding logo component

This commit is contained in:
miloschwartz 2025-07-15 16:24:16 -07:00
parent e99905e3c9
commit 19d54778f5
No known key found for this signature in database
5 changed files with 97 additions and 61 deletions

View file

@ -69,7 +69,13 @@ async function copyInDomains() {
} else {
await trx
.insert(domains)
.values({ domainId, baseDomain, configManaged: true, type: "wildcard" })
.values({
domainId,
baseDomain,
configManaged: true,
type: "wildcard",
verified: true
})
.execute();
}
}