Basic crud working?

This commit is contained in:
Owen
2026-04-23 15:01:43 -07:00
parent fa117198a0
commit e7a9a19816
8 changed files with 80 additions and 104 deletions

View File

@@ -150,7 +150,7 @@ export async function validateAndConstructDomain(
return {
success: true,
fullDomain,
subdomain: isWildcard ? "*" : (finalSubdomain ?? null),
subdomain: finalSubdomain ?? null,
wildcard: isWildcard
};
} catch (error) {