forked from baron/baron-sso
API 변경에 따른 클라이언트 관리 페이지 수정
This commit is contained in:
@@ -211,14 +211,10 @@ function ClientsPage() {
|
|||||||
variant={
|
variant={
|
||||||
item.tone === "up"
|
item.tone === "up"
|
||||||
? "success"
|
? "success"
|
||||||
: item.tone === "down"
|
: "muted"
|
||||||
? "warning"
|
|
||||||
: "muted"
|
|
||||||
}
|
}
|
||||||
className={cn(
|
className={cn(
|
||||||
"px-2",
|
"px-2",
|
||||||
item.tone === "down" &&
|
|
||||||
"bg-rose-100 text-rose-700 dark:bg-rose-900/30 dark:text-rose-200",
|
|
||||||
item.tone === "stable" && "bg-muted/40 text-foreground",
|
item.tone === "stable" && "bg-muted/40 text-foreground",
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ export type ClientSummary = {
|
|||||||
type: ClientType;
|
type: ClientType;
|
||||||
status: ClientStatus;
|
status: ClientStatus;
|
||||||
createdAt?: string;
|
createdAt?: string;
|
||||||
|
clientSecret?: string;
|
||||||
redirectUris: string[];
|
redirectUris: string[];
|
||||||
scopes: string[];
|
scopes: string[];
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user