Working on delete

This commit is contained in:
Owen Schwartz 2024-12-24 12:08:31 -05:00
parent 8e544cca42
commit 35358cbe57
No known key found for this signature in database
GPG key ID: 8271FDFFD9E0CCBD
5 changed files with 113 additions and 24 deletions

View file

@ -28,6 +28,7 @@ export type GetSiteResponse = {
name: string;
subdomain: string;
subnet: string;
type: string;
};
export async function getSite(
@ -81,7 +82,8 @@ export async function getSite(
siteId: site[0].siteId,
niceId: site[0].niceId,
name: site[0].name,
subnet: site[0].subnet
subnet: site[0].subnet,
type: site[0].type
},
success: true,
error: false,