1
0
forked from baron/baron-sso

스코프 순서 및 테넌트 검색 수정

This commit is contained in:
2026-04-24 17:18:47 +09:00
parent 373751996a
commit b9232687b5
2 changed files with 36 additions and 24 deletions

View File

@@ -409,11 +409,8 @@ export async function fetchDevAuditLogs(
return data;
}
export type MyTenantSummary = {
id: string;
name: string;
slug: string;
};
export type MyTenantSummary = Pick<TenantSummary, "id" | "name" | "slug"> &
Partial<TenantSummary>;
export async function fetchMyTenants() {
const { data } = await apiClient.get<MyTenantSummary[]>("/dev/my-tenants");