forked from baron/baron-sso
스코프 순서 및 테넌트 검색 수정
This commit is contained in:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user