1
0
forked from baron/baron-sso

테스트 커버리지 보강 및 공통 유틸 테스트 추가

This commit is contained in:
2026-06-01 16:54:58 +09:00
parent d0f44de2d1
commit a4d457073a
6 changed files with 511 additions and 1 deletions

View File

@@ -59,6 +59,12 @@ export function getRecentClientActionLabel(action: string) {
function getRecentClientFieldLabel(key: string) {
switch (key) {
case "name":
return t("ui.dev.clients.table.application", "Application");
case "type":
return t("ui.dev.clients.table.type", "Type");
case "status":
return t("ui.dev.clients.table.status", "Status");
case "relation":
return t("ui.dev.clients.relationships.relation", "관계");
case "subject":
@@ -84,7 +90,7 @@ export function buildRecentClientChangeDetails(
return [
{
label: getRecentClientFieldLabel("client_secret"),
value: t("msg.dev.clients.secret_rotated", "재발급"),
value: t("msg.dev.clients.details.secret_rotated", "재발급"),
},
];
}