1
0
forked from baron/baron-sso

feat(devfront): show client creators and headless filter

This commit is contained in:
2026-06-17 22:03:15 +09:00
parent 69e1e32fd4
commit 5f3167a503
7 changed files with 311 additions and 9 deletions

View File

@@ -8,6 +8,7 @@ export type Client = {
name: string;
type: ClientType;
status: ClientStatus;
creatorId?: string;
redirectUris: string[];
scopes: string[];
createdAt: string;
@@ -594,6 +595,7 @@ export async function installDevApiMock(page: Page, state: DevApiMockState) {
name: client.name,
type: client.type,
status: client.status,
creatorId: client.creatorId,
createdAt: client.createdAt,
redirectUris: client.redirectUris,
scopes: client.scopes,