1
0
forked from baron/baron-sso

fix(adminfront): remove duplicate importOrgChart declaration (again)

This commit is contained in:
2026-03-04 14:47:36 +09:00
parent b6c7a9dc43
commit 6506bd192d

View File

@@ -311,21 +311,6 @@ export async function removeGroupRole(
);
}
export async function importOrgChart(tenantId: string, file: File) {
const formData = new FormData();
formData.append("file", file);
const { data } = await apiClient.post(
`/v1/admin/tenants/${tenantId}/organization/import`,
formData,
{
headers: {
"Content-Type": "multipart/form-data",
},
},
);
return data;
}
// API Key Management (M2M)
export type ApiKeyCreateRequest = {
name: string;