diff --git a/.gitea/workflows/code_check.yml b/.gitea/workflows/code_check.yml index 8f188d20..3e802d76 100644 --- a/.gitea/workflows/code_check.yml +++ b/.gitea/workflows/code_check.yml @@ -75,8 +75,8 @@ jobs: - name: Biome check adminfront (lint + format) run: | cd adminfront - npx biome lint . - npx biome format . --check + npx biome check . --formatter-enabled=false --organize-imports-enabled=false + npx biome check . --linter-enabled=false --organize-imports-enabled=false - name: Install devfront dependencies run: | @@ -86,8 +86,8 @@ jobs: - name: Biome check devfront (lint + format) run: | cd devfront - npx biome lint . - npx biome format . --check + npx biome check . --formatter-enabled=false --organize-imports-enabled=false + npx biome check . --linter-enabled=false --organize-imports-enabled=false - name: Lint Go backend uses: golangci/golangci-lint-action@v6 diff --git a/adminfront/src/features/user-groups/routes/GlobalUserGroupListPage.tsx b/adminfront/src/features/user-groups/routes/GlobalUserGroupListPage.tsx index 193578ee..97fd27d8 100644 --- a/adminfront/src/features/user-groups/routes/GlobalUserGroupListPage.tsx +++ b/adminfront/src/features/user-groups/routes/GlobalUserGroupListPage.tsx @@ -19,7 +19,11 @@ import { TableHeader, TableRow, } from "../../../components/ui/table"; -import { fetchGroups, fetchTenants } from "../../../lib/adminApi"; +import { + fetchGroups, + fetchTenants, + type TenantSummary, +} from "../../../lib/adminApi"; export default function GlobalUserGroupListPage() { const { data: tenantList, isLoading: isTenantsLoading } = useQuery({ @@ -51,7 +55,7 @@ export default function GlobalUserGroupListPage() { ); } -function TenantGroupCard({ tenant }: { tenant: any }) { +function TenantGroupCard({ tenant }: { tenant: TenantSummary }) { const { data: groups, isLoading } = useQuery({ queryKey: ["tenant-user-groups", tenant.id], queryFn: () => fetchGroups(tenant.id), diff --git a/adminfront/src/features/user-groups/routes/TenantUserGroupsTab.tsx b/adminfront/src/features/user-groups/routes/TenantUserGroupsTab.tsx index 2f980a25..79dbc2e6 100644 --- a/adminfront/src/features/user-groups/routes/TenantUserGroupsTab.tsx +++ b/adminfront/src/features/user-groups/routes/TenantUserGroupsTab.tsx @@ -31,6 +31,21 @@ import { } from "../../../components/ui/table"; import { createGroup, deleteGroup, fetchGroups } from "../../../lib/adminApi"; +function getErrorMessage(error: unknown, fallback: string): string { + if (error instanceof Error && error.message) { + return error.message; + } + if ( + typeof error === "object" && + error !== null && + "message" in error && + typeof (error as { message?: unknown }).message === "string" + ) { + return (error as { message: string }).message; + } + return fallback; +} + export function TenantUserGroupsTab() { const { tenantId } = useParams<{ tenantId: string }>(); const queryClient = useQueryClient(); @@ -40,13 +55,25 @@ export function TenantUserGroupsTab() { const { data: groups, isLoading } = useQuery({ queryKey: ["tenant-user-groups", tenantId], - queryFn: () => fetchGroups(tenantId!), + queryFn: () => { + if (!tenantId) { + throw new Error("tenantId is required"); + } + return fetchGroups(tenantId); + }, enabled: !!tenantId, }); const createMutation = useMutation({ - mutationFn: () => - createGroup(tenantId!, { name: newGroupName, description: newGroupDesc }), + mutationFn: () => { + if (!tenantId) { + throw new Error("tenantId is required"); + } + return createGroup(tenantId, { + name: newGroupName, + description: newGroupDesc, + }); + }, onSuccess: () => { queryClient.invalidateQueries({ queryKey: ["tenant-user-groups", tenantId], @@ -56,13 +83,18 @@ export function TenantUserGroupsTab() { setNewGroupDesc(""); alert("User group created successfully"); }, - onError: (error: any) => { - alert(error.message || "Failed to create user group"); + onError: (error: unknown) => { + alert(getErrorMessage(error, "Failed to create user group")); }, }); const deleteMutation = useMutation({ - mutationFn: (groupId: string) => deleteGroup(tenantId!, groupId), + mutationFn: (groupId: string) => { + if (!tenantId) { + throw new Error("tenantId is required"); + } + return deleteGroup(tenantId, groupId); + }, onSuccess: () => { queryClient.invalidateQueries({ queryKey: ["tenant-user-groups", tenantId], diff --git a/adminfront/src/features/user-groups/routes/UserGroupDetailPage.tsx b/adminfront/src/features/user-groups/routes/UserGroupDetailPage.tsx index 0ecc7b72..e06cecd9 100644 --- a/adminfront/src/features/user-groups/routes/UserGroupDetailPage.tsx +++ b/adminfront/src/features/user-groups/routes/UserGroupDetailPage.tsx @@ -48,6 +48,28 @@ import { removeGroupRole, } from "../../../lib/adminApi"; +function getErrorMessage(error: unknown, fallback: string): string { + if (typeof error === "object" && error !== null) { + const response = (error as { response?: { data?: { error?: unknown } } }) + .response; + const responseError = response?.data?.error; + if (typeof responseError === "string" && responseError.length > 0) { + return responseError; + } + + const message = (error as { message?: unknown }).message; + if (typeof message === "string" && message.length > 0) { + return message; + } + } + + if (error instanceof Error && error.message) { + return error.message; + } + + return fallback; +} + export function UserGroupDetailPage() { const { tenantId, id } = useParams<{ tenantId: string; id: string }>(); const queryClient = useQueryClient(); @@ -67,7 +89,12 @@ export function UserGroupDetailPage() { error, } = useQuery({ queryKey: ["user-group-detail", id], - queryFn: () => fetchGroup(tenantId!, id!), + queryFn: () => { + if (!tenantId || !id) { + throw new Error("tenantId and id are required"); + } + return fetchGroup(tenantId, id); + }, enabled: !!id && !!tenantId, retry: false, }); @@ -75,7 +102,12 @@ export function UserGroupDetailPage() { // Fetch assigned roles const { data: groupRoles, isLoading: isRolesLoading } = useQuery({ queryKey: ["user-group-roles", id], - queryFn: () => fetchGroupRoles(tenantId!, id!), + queryFn: () => { + if (!tenantId || !id) { + throw new Error("tenantId and id are required"); + } + return fetchGroupRoles(tenantId, id); + }, enabled: !!id && !!tenantId, }); @@ -94,20 +126,30 @@ export function UserGroupDetailPage() { }); const addMemberMutation = useMutation({ - mutationFn: (userId: string) => addGroupMember(tenantId!, id!, userId), + mutationFn: (userId: string) => { + if (!tenantId || !id) { + throw new Error("tenantId and id are required"); + } + return addGroupMember(tenantId, id, userId); + }, onSuccess: () => { queryClient.invalidateQueries({ queryKey: ["user-group-detail", id] }); setIsAddMemberOpen(false); setSelectedUserId(""); alert("Member added successfully"); }, - onError: (error: any) => { - alert(error.message || "Failed to add member"); + onError: (error: unknown) => { + alert(getErrorMessage(error, "Failed to add member")); }, }); const removeMemberMutation = useMutation({ - mutationFn: (userId: string) => removeGroupMember(tenantId!, id!, userId), + mutationFn: (userId: string) => { + if (!tenantId || !id) { + throw new Error("tenantId and id are required"); + } + return removeGroupMember(tenantId, id, userId); + }, onSuccess: () => { queryClient.invalidateQueries({ queryKey: ["user-group-detail", id] }); alert("Member removed successfully"); @@ -115,21 +157,34 @@ export function UserGroupDetailPage() { }); const assignRoleMutation = useMutation({ - mutationFn: () => - assignGroupRole(tenantId!, id!, selectedTargetTenantId, selectedRelation), + mutationFn: () => { + if (!tenantId || !id) { + throw new Error("tenantId and id are required"); + } + return assignGroupRole( + tenantId, + id, + selectedTargetTenantId, + selectedRelation, + ); + }, onSuccess: () => { queryClient.invalidateQueries({ queryKey: ["user-group-roles", id] }); setIsAddRoleOpen(false); alert(`Role '${selectedRelation}' assigned successfully`); }, - onError: (error: any) => { - alert(error.message || "Failed to assign role"); + onError: (error: unknown) => { + alert(getErrorMessage(error, "Failed to assign role")); }, }); const removeRoleMutation = useMutation({ - mutationFn: (role: { targetTenantId: string; relation: string }) => - removeGroupRole(tenantId!, id!, role.targetTenantId, role.relation), + mutationFn: (role: { targetTenantId: string; relation: string }) => { + if (!tenantId || !id) { + throw new Error("tenantId and id are required"); + } + return removeGroupRole(tenantId, id, role.targetTenantId, role.relation); + }, onSuccess: () => { queryClient.invalidateQueries({ queryKey: ["user-group-roles", id] }); alert("Role removed successfully"); @@ -139,7 +194,7 @@ export function UserGroupDetailPage() { if (isGroupLoading) return (
-
+
Loading group details... @@ -153,12 +208,7 @@ export function UserGroupDetailPage() { Could not load group
-

- Error:{" "} - {(error as any)?.response?.data?.error || - (error as any)?.message || - "Not found"} -

+

Error: {getErrorMessage(error, "Not found")}

Path: /admin/tenants/{tenantId}/user-groups/{id}

diff --git a/adminfront/src/lib/auth.ts b/adminfront/src/lib/auth.ts index 5d1df7d8..8f46d964 100644 --- a/adminfront/src/lib/auth.ts +++ b/adminfront/src/lib/auth.ts @@ -2,7 +2,8 @@ import { UserManager, WebStorageStateStore } from "oidc-client-ts"; import type { AuthProviderProps } from "react-oidc-context"; export const oidcConfig: AuthProviderProps = { - authority: import.meta.env.VITE_OIDC_AUTHORITY || "http://localhost:5000/oidc", // Gateway Proxy URL + authority: + import.meta.env.VITE_OIDC_AUTHORITY || "http://localhost:5000/oidc", // Gateway Proxy URL client_id: import.meta.env.VITE_OIDC_CLIENT_ID || "adminfront", redirect_uri: `${window.location.origin}/auth/callback`, response_type: "code", diff --git a/devfront/src/components/common/LanguageSelector.tsx b/devfront/src/components/common/LanguageSelector.tsx index fe77df72..7f905cd0 100644 --- a/devfront/src/components/common/LanguageSelector.tsx +++ b/devfront/src/components/common/LanguageSelector.tsx @@ -44,12 +44,8 @@ function LanguageSelector() { className="rounded-full border border-border bg-transparent px-3 py-2 text-sm text-muted-foreground transition hover:bg-muted/20" aria-label={t("ui.common.language", "언어")} > - - + + ); } diff --git a/devfront/src/components/ui/badge.tsx b/devfront/src/components/ui/badge.tsx index 8f9d0789..8ef586fd 100644 --- a/devfront/src/components/ui/badge.tsx +++ b/devfront/src/components/ui/badge.tsx @@ -26,8 +26,7 @@ const badgeVariants = cva( ); export interface BadgeProps - extends - React.HTMLAttributes, + extends React.HTMLAttributes, VariantProps {} function Badge({ className, variant, ...props }: BadgeProps) { diff --git a/devfront/src/components/ui/button.tsx b/devfront/src/components/ui/button.tsx index 91d21e58..ee1a84b4 100644 --- a/devfront/src/components/ui/button.tsx +++ b/devfront/src/components/ui/button.tsx @@ -34,8 +34,7 @@ const buttonVariants = cva( ); export interface ButtonProps - extends - React.ButtonHTMLAttributes, + extends React.ButtonHTMLAttributes, VariantProps { asChild?: boolean; } diff --git a/devfront/src/components/ui/input.tsx b/devfront/src/components/ui/input.tsx index eb2a9c6e..41955477 100644 --- a/devfront/src/components/ui/input.tsx +++ b/devfront/src/components/ui/input.tsx @@ -1,7 +1,8 @@ import * as React from "react"; import { cn } from "../../lib/utils"; -export interface InputProps extends React.InputHTMLAttributes {} +export interface InputProps + extends React.InputHTMLAttributes {} const Input = React.forwardRef( ({ className, type, ...props }, ref) => { diff --git a/devfront/src/components/ui/textarea.tsx b/devfront/src/components/ui/textarea.tsx index 78dbae91..80f0abc2 100644 --- a/devfront/src/components/ui/textarea.tsx +++ b/devfront/src/components/ui/textarea.tsx @@ -1,7 +1,8 @@ import * as React from "react"; import { cn } from "../../lib/utils"; -export interface TextareaProps extends React.TextareaHTMLAttributes {} +export interface TextareaProps + extends React.TextareaHTMLAttributes {} const Textarea = React.forwardRef( ({ className, ...props }, ref) => { diff --git a/devfront/src/features/auth/LoginPage.tsx b/devfront/src/features/auth/LoginPage.tsx index 53579bd0..30ee21c9 100644 --- a/devfront/src/features/auth/LoginPage.tsx +++ b/devfront/src/features/auth/LoginPage.tsx @@ -35,18 +35,18 @@ function LoginPage() { - - 개발자 포털 로그인 + + 개발자 포털 로그인 Baron 통합 인증(SSO)을 통해 개발자 포털에 접속합니다. - - +

- 개발자 포털 세션은 브라우저 정책에 따라 유지됩니다.
+ 개발자 포털 세션은 브라우저 정책에 따라 유지됩니다. +
민감한 작업 시 재인증을 요구할 수 있습니다.

-
-
-
+
+
+

- 인증 정보가 없거나 로그인이 되지 않는 경우
+ 인증 정보가 없거나 로그인이 되지 않는 경우 +
시스템 관리자에게 문의하세요.

diff --git a/devfront/src/features/clients/ClientsPage.tsx b/devfront/src/features/clients/ClientsPage.tsx index 39197e21..d1ddffe8 100644 --- a/devfront/src/features/clients/ClientsPage.tsx +++ b/devfront/src/features/clients/ClientsPage.tsx @@ -208,11 +208,7 @@ function ClientsPage() {
{item.value} { Future _applyLocale() async { final normalized = normalizeLocaleCode(widget.localeCode); LocaleStorage.write(normalized); - webWindow.setTitle( - tr('ui.userfront.app_title'), - ); + webWindow.setTitle(tr('ui.userfront.app_title')); if (context.locale.languageCode == normalized) { return; } await context.setLocale(Locale(normalized)); - webWindow.setTitle( - tr('ui.userfront.app_title'), - ); + webWindow.setTitle(tr('ui.userfront.app_title')); } @override diff --git a/userfront/lib/core/i18n/locale_utils.dart b/userfront/lib/core/i18n/locale_utils.dart index 926524e8..5d403bcf 100644 --- a/userfront/lib/core/i18n/locale_utils.dart +++ b/userfront/lib/core/i18n/locale_utils.dart @@ -76,7 +76,7 @@ String buildLocalizedPath(String localeCode, Uri uri) { } } final newPath = '/${[localeCode, ...restSegments].join('/')}'; - + // Return only the path and query part to avoid GoRouter confusion with full URLs final newUri = uri.replace(path: newPath); String result = newUri.path; diff --git a/userfront/lib/core/services/auth_proxy_service.dart b/userfront/lib/core/services/auth_proxy_service.dart index 29e78ede..3abe60bd 100644 --- a/userfront/lib/core/services/auth_proxy_service.dart +++ b/userfront/lib/core/services/auth_proxy_service.dart @@ -299,10 +299,7 @@ class AuthProxyService { } else { final errorBody = jsonDecode(response.body); throw Exception( - errorBody['error'] ?? - tr( - 'err.userfront.auth_proxy.consent_fetch', - ), + errorBody['error'] ?? tr('err.userfront.auth_proxy.consent_fetch'), ); } } finally { @@ -333,10 +330,7 @@ class AuthProxyService { } else { final errorBody = jsonDecode(response.body); throw Exception( - errorBody['error'] ?? - tr( - 'err.userfront.auth_proxy.consent_accept', - ), + errorBody['error'] ?? tr('err.userfront.auth_proxy.consent_accept'), ); } } finally { @@ -363,10 +357,7 @@ class AuthProxyService { } else { final errorBody = jsonDecode(response.body); throw Exception( - errorBody['error'] ?? - tr( - 'err.userfront.auth_proxy.consent_reject', - ), + errorBody['error'] ?? tr('err.userfront.auth_proxy.consent_reject'), ); } } finally { diff --git a/userfront/lib/core/widgets/language_selector.dart b/userfront/lib/core/widgets/language_selector.dart index 8649e403..27520d84 100644 --- a/userfront/lib/core/widgets/language_selector.dart +++ b/userfront/lib/core/widgets/language_selector.dart @@ -15,10 +15,7 @@ class LanguageSelector extends StatelessWidget { Widget build(BuildContext context) { final current = context.locale.languageCode; final items = [ - DropdownMenuItem( - value: 'ko', - child: Text(tr('ui.common.language_ko')), - ), + DropdownMenuItem(value: 'ko', child: Text(tr('ui.common.language_ko'))), DropdownMenuItem( value: 'en', child: Text(tr('ui.common.language_en', fallback: 'English')), diff --git a/userfront/lib/features/auth/presentation/error_screen.dart b/userfront/lib/features/auth/presentation/error_screen.dart index 0caada68..d86d1092 100644 --- a/userfront/lib/features/auth/presentation/error_screen.dart +++ b/userfront/lib/features/auth/presentation/error_screen.dart @@ -39,9 +39,7 @@ class ErrorScreen extends StatelessWidget { 'msg.userfront.error.title_with_code', params: {'code': normalizedCode}, ) - : tr( - 'msg.userfront.error.title_generic', - )); + : tr('msg.userfront.error.title_generic')); final detail = isProd ? (isInternalWhitelisted ? tr( @@ -51,23 +49,16 @@ class ErrorScreen extends StatelessWidget { : (isOryBypass ? tr( 'msg.userfront.error.ory.$normalizedCode', - fallback: - (description?.isNotEmpty == true) - ? description - : tr('msg.userfront.error.detail_request'), + fallback: (description?.isNotEmpty == true) + ? description + : tr('msg.userfront.error.detail_request'), ) - : tr( - 'msg.userfront.error.detail_contact', - ))) + : tr('msg.userfront.error.detail_contact'))) : ((description?.isNotEmpty == true) ? description! : (hasCode - ? tr( - 'msg.userfront.error.detail_generic', - ) - : tr( - 'msg.userfront.error.detail_request', - ))); + ? tr('msg.userfront.error.detail_generic') + : tr('msg.userfront.error.detail_request'))); return Scaffold( backgroundColor: const Color(0xFFF7F8FA), @@ -104,10 +95,7 @@ class ErrorScreen extends StatelessWidget { ), const SizedBox(height: 12), Text( - tr( - 'msg.userfront.error.type', - params: {'type': errorType}, - ), + tr('msg.userfront.error.type', params: {'type': errorType}), style: theme.textTheme.bodySmall?.copyWith( color: const Color(0xFF6B7280), ), @@ -115,10 +103,7 @@ class ErrorScreen extends StatelessWidget { if (errorId != null && errorId!.isNotEmpty) ...[ const SizedBox(height: 12), Text( - tr( - 'msg.userfront.error.id', - params: {'id': errorId!}, - ), + tr('msg.userfront.error.id', params: {'id': errorId!}), style: theme.textTheme.bodySmall?.copyWith( color: const Color(0xFF6B7280), ), @@ -142,11 +127,7 @@ class ErrorScreen extends StatelessWidget { borderRadius: BorderRadius.circular(10), ), ), - child: Text( - tr( - 'ui.userfront.error.go_login', - ), - ), + child: Text(tr('ui.userfront.error.go_login')), ), OutlinedButton( onPressed: () => context.go('/'), @@ -161,9 +142,7 @@ class ErrorScreen extends StatelessWidget { borderRadius: BorderRadius.circular(10), ), ), - child: Text( - tr('ui.userfront.error.go_home'), - ), + child: Text(tr('ui.userfront.error.go_home')), ), ], ), diff --git a/userfront/lib/features/auth/presentation/forgot_password_screen.dart b/userfront/lib/features/auth/presentation/forgot_password_screen.dart index 1ad9f96e..1cca15c8 100644 --- a/userfront/lib/features/auth/presentation/forgot_password_screen.dart +++ b/userfront/lib/features/auth/presentation/forgot_password_screen.dart @@ -25,11 +25,7 @@ class _ForgotPasswordScreenState extends State { Future _handlePasswordReset() async { final input = _loginIdController.text.trim(); if (input.isEmpty) { - _showError( - tr( - 'msg.userfront.forgot.input_required', - ), - ); + _showError(tr('msg.userfront.forgot.input_required')); return; } @@ -52,11 +48,7 @@ class _ForgotPasswordScreenState extends State { if (mounted) { ScaffoldMessenger.of(context).showSnackBar( SnackBar( - content: Text( - tr( - 'msg.userfront.forgot.sent', - ), - ), + content: Text(tr('msg.userfront.forgot.sent')), backgroundColor: Colors.green, ), ); @@ -65,10 +57,7 @@ class _ForgotPasswordScreenState extends State { } catch (e) { if (mounted) { _showError( - tr( - 'msg.userfront.forgot.error', - params: {'error': e.toString()}, - ), + tr('msg.userfront.forgot.error', params: {'error': e.toString()}), ); } } finally { @@ -133,9 +122,7 @@ class _ForgotPasswordScreenState extends State { const SizedBox(width: 8), Expanded( child: Text( - tr( - 'msg.userfront.forgot.dry_send', - ), + tr('msg.userfront.forgot.dry_send'), style: const TextStyle( color: Color(0xFF8A6D3B), fontSize: 12, @@ -148,9 +135,7 @@ class _ForgotPasswordScreenState extends State { ], const SizedBox(height: 16), Text( - tr( - 'msg.userfront.forgot.description', - ), + tr('msg.userfront.forgot.description'), textAlign: TextAlign.center, style: const TextStyle(color: Colors.grey), ), @@ -158,9 +143,7 @@ class _ForgotPasswordScreenState extends State { TextField( controller: _loginIdController, decoration: InputDecoration( - labelText: tr( - 'ui.userfront.forgot.input_label', - ), + labelText: tr('ui.userfront.forgot.input_label'), border: const OutlineInputBorder(), prefixIcon: const Icon(Icons.person_outline), ), @@ -181,9 +164,7 @@ class _ForgotPasswordScreenState extends State { color: Colors.white, ), ) - : Text( - tr('ui.userfront.forgot.submit'), - ), + : Text(tr('ui.userfront.forgot.submit')), ), ], ), diff --git a/userfront/lib/features/auth/presentation/login_screen.dart b/userfront/lib/features/auth/presentation/login_screen.dart index 20e4b4ba..bddb8515 100644 --- a/userfront/lib/features/auth/presentation/login_screen.dart +++ b/userfront/lib/features/auth/presentation/login_screen.dart @@ -900,8 +900,7 @@ class _LoginScreenState extends ConsumerState _onLoginSuccess(jwt, provider: provider, redirectTo: redirectTo); } else if (redirectTo != null && redirectTo.isNotEmpty) { webWindow.redirectTo(redirectTo); - } else { - } + } else {} } catch (e) { if (e.toString().contains("User not registered")) { _showUnregisteredDialog(); @@ -1124,11 +1123,14 @@ class _LoginScreenState extends ConsumerState } } - Future _onLoginSuccess(String token, {String? provider, String? redirectTo}) async { - + Future _onLoginSuccess( + String token, { + String? provider, + String? redirectTo, + }) async { try { if (!mounted) { - return; + return; } // [Priority 1] Immediate External Redirection @@ -1139,7 +1141,7 @@ class _LoginScreenState extends ConsumerState } catch (stErr) { // ignore } - + webWindow.redirectTo(redirectTo); // Removed await as it's void return; } @@ -1150,24 +1152,19 @@ class _LoginScreenState extends ConsumerState // Save token first, it's needed for acceptance final providerName = provider ?? AuthTokenStore.getProvider(); AuthTokenStore.setToken(token, provider: providerName); - + final res = await AuthProxyService.acceptOidcLogin( _loginChallenge!, token: token, ); final nextRedirectTo = res['redirectTo'] as String?; - + if (nextRedirectTo != null && nextRedirectTo.isNotEmpty) { webWindow.redirectTo(nextRedirectTo); // Removed await return; - } else { - } + } else {} } catch (e) { - _showError( - tr( - 'msg.userfront.login.oidc_failed', - ), - ); + _showError(tr('msg.userfront.login.oidc_failed')); return; } } @@ -1188,7 +1185,8 @@ class _LoginScreenState extends ConsumerState final uri = Uri.base; final redirectParam = - uri.queryParameters['redirect_uri'] ?? uri.queryParameters['redirect_url']; + uri.queryParameters['redirect_uri'] ?? + uri.queryParameters['redirect_url']; final hasRedirectParam = redirectParam != null && redirectParam.isNotEmpty; diff --git a/userfront/lib/features/auth/presentation/login_success_screen.dart b/userfront/lib/features/auth/presentation/login_success_screen.dart index d4ad69de..97b7b467 100644 --- a/userfront/lib/features/auth/presentation/login_success_screen.dart +++ b/userfront/lib/features/auth/presentation/login_success_screen.dart @@ -26,9 +26,7 @@ class LoginSuccessScreen extends StatelessWidget { ), const SizedBox(height: 16), Text( - tr( - 'msg.userfront.login_success.subtitle', - ), + tr('msg.userfront.login_success.subtitle'), textAlign: TextAlign.center, style: const TextStyle(color: Colors.grey, fontSize: 16), ), @@ -40,11 +38,7 @@ class LoginSuccessScreen extends StatelessWidget { context.push('/scan'); }, icon: const Icon(Icons.camera_alt, size: 28), - label: Text( - tr( - 'ui.userfront.login_success.qr', - ), - ), + label: Text(tr('ui.userfront.login_success.qr')), style: FilledButton.styleFrom( minimumSize: const Size.fromHeight(80), // 버튼 높이를 더 크게 backgroundColor: Colors.blue.shade700, @@ -63,9 +57,7 @@ class LoginSuccessScreen extends StatelessWidget { context.go('/'); }, child: Text( - tr( - 'ui.userfront.login_success.later', - ), + tr('ui.userfront.login_success.later'), style: const TextStyle(color: Colors.grey), ), ), diff --git a/userfront/lib/features/auth/presentation/qr_scan_screen.dart b/userfront/lib/features/auth/presentation/qr_scan_screen.dart index b9c83025..a13cf54f 100644 --- a/userfront/lib/features/auth/presentation/qr_scan_screen.dart +++ b/userfront/lib/features/auth/presentation/qr_scan_screen.dart @@ -21,7 +21,9 @@ class _QRScanScreenState extends State { ), ), body: const Center( - child: Text('QR Scanner is temporarily disabled for WASM build stability.'), + child: Text( + 'QR Scanner is temporarily disabled for WASM build stability.', + ), ), ); } diff --git a/userfront/lib/features/auth/presentation/reset_password_screen.dart b/userfront/lib/features/auth/presentation/reset_password_screen.dart index 2521bb79..6ecc4513 100644 --- a/userfront/lib/features/auth/presentation/reset_password_screen.dart +++ b/userfront/lib/features/auth/presentation/reset_password_screen.dart @@ -69,11 +69,7 @@ class _ResetPasswordScreenState extends State { if (_formKey.currentState?.validate() != true) return; if ((_loginId == null || _loginId!.isEmpty) && (_token == null || _token!.isEmpty)) { - _showError( - tr( - 'msg.userfront.reset.invalid_link', - ), - ); + _showError(tr('msg.userfront.reset.invalid_link')); return; } @@ -89,11 +85,7 @@ class _ResetPasswordScreenState extends State { if (mounted) { ScaffoldMessenger.of(context).showSnackBar( SnackBar( - content: Text( - tr( - 'msg.userfront.reset.success', - ), - ), + content: Text(tr('msg.userfront.reset.success')), backgroundColor: Colors.green, ), ); @@ -123,9 +115,7 @@ class _ResetPasswordScreenState extends State { String _buildPolicyDescription() { if (_isPolicyLoading) { - return tr( - 'msg.userfront.reset.policy_loading', - ); + return tr('msg.userfront.reset.policy_loading'); } final minLength = (_policy?['minLength'] as int?) ?? 12; final minTypes = (_policy?['minCharacterTypes'] as int?) ?? 0; @@ -149,22 +139,16 @@ class _ResetPasswordScreenState extends State { ); } if (requiresLower) { - parts.add( - tr('msg.userfront.reset.policy.lowercase'), - ); + parts.add(tr('msg.userfront.reset.policy.lowercase')); } if (requiresUpper) { - parts.add( - tr('msg.userfront.reset.policy.uppercase'), - ); + parts.add(tr('msg.userfront.reset.policy.uppercase')); } if (requiresNumber) { parts.add(tr('msg.userfront.reset.policy.number')); } if (requiresSymbol) { - parts.add( - tr('msg.userfront.reset.policy.symbol'), - ); + parts.add(tr('msg.userfront.reset.policy.symbol')); } return parts.join(", "); @@ -192,9 +176,7 @@ class _ResetPasswordScreenState extends State { crossAxisAlignment: CrossAxisAlignment.stretch, children: [ Text( - tr( - 'ui.userfront.reset.subtitle', - ), + tr('ui.userfront.reset.subtitle'), style: TextStyle( fontSize: 28, fontWeight: FontWeight.bold, @@ -212,9 +194,7 @@ class _ResetPasswordScreenState extends State { controller: _passwordController, obscureText: _isPasswordObscured, decoration: InputDecoration( - labelText: tr( - 'ui.userfront.reset.new_password', - ), + labelText: tr('ui.userfront.reset.new_password'), border: const OutlineInputBorder(), prefixIcon: const Icon(Icons.lock_outline), suffixIcon: IconButton( @@ -265,25 +245,17 @@ class _ResetPasswordScreenState extends State { } if ((_policy?['lowercase'] ?? true) && !hasLower) { - return tr( - 'msg.userfront.reset.error.lowercase', - ); + return tr('msg.userfront.reset.error.lowercase'); } if ((_policy?['uppercase'] ?? false) && !hasUpper) { - return tr( - 'msg.userfront.reset.error.uppercase', - ); + return tr('msg.userfront.reset.error.uppercase'); } if ((_policy?['number'] ?? true) && !hasNumber) { - return tr( - 'msg.userfront.reset.error.number', - ); + return tr('msg.userfront.reset.error.number'); } if ((_policy?['nonAlphanumeric'] ?? true) && !hasSymbol) { - return tr( - 'msg.userfront.reset.error.symbol', - ); + return tr('msg.userfront.reset.error.symbol'); } return null; }, @@ -293,9 +265,7 @@ class _ResetPasswordScreenState extends State { controller: _confirmPasswordController, obscureText: _isConfirmPasswordObscured, decoration: InputDecoration( - labelText: tr( - 'ui.userfront.reset.confirm_password', - ), + labelText: tr('ui.userfront.reset.confirm_password'), border: const OutlineInputBorder(), prefixIcon: const Icon(Icons.lock_outline), suffixIcon: IconButton( @@ -314,9 +284,7 @@ class _ResetPasswordScreenState extends State { ), validator: (value) { if (value != _passwordController.text) { - return tr( - 'msg.userfront.reset.error.mismatch', - ); + return tr('msg.userfront.reset.error.mismatch'); } return null; }, @@ -336,11 +304,7 @@ class _ResetPasswordScreenState extends State { color: Colors.white, ), ) - : Text( - tr( - 'ui.userfront.reset.submit', - ), - ), + : Text(tr('ui.userfront.reset.submit')), ), ], ), @@ -364,9 +328,7 @@ class _ResetPasswordScreenState extends State { ), const SizedBox(height: 8), Text( - tr( - 'msg.userfront.reset.invalid_body', - ), + tr('msg.userfront.reset.invalid_body'), textAlign: TextAlign.center, ), ], diff --git a/userfront/lib/features/auth/presentation/signup_screen.dart b/userfront/lib/features/auth/presentation/signup_screen.dart index d9ecb9ba..3c704c86 100644 --- a/userfront/lib/features/auth/presentation/signup_screen.dart +++ b/userfront/lib/features/auth/presentation/signup_screen.dart @@ -164,11 +164,7 @@ class _SignupScreenState extends State { final email = _emailController.text.trim(); final emailRegex = RegExp(r'^[\w-\.]+@([\w-]+\.)+[\w-]{2,4}$'); if (!emailRegex.hasMatch(email)) { - setState( - () => _emailError = tr( - 'msg.userfront.signup.email.invalid', - ), - ); + setState(() => _emailError = tr('msg.userfront.signup.email.invalid')); return; } setState(() { @@ -179,9 +175,7 @@ class _SignupScreenState extends State { final available = await AuthProxyService.checkEmailAvailability(email); if (!available) { setState( - () => _emailError = tr( - 'msg.userfront.signup.email.duplicate', - ), + () => _emailError = tr('msg.userfront.signup.email.duplicate'), ); return; } @@ -217,9 +211,7 @@ class _SignupScreenState extends State { }); } else { setState( - () => _emailError = tr( - 'msg.userfront.signup.email.code_mismatch', - ), + () => _emailError = tr('msg.userfront.signup.email.code_mismatch'), ); } } catch (e) { @@ -272,9 +264,7 @@ class _SignupScreenState extends State { }); } else { setState( - () => _phoneError = tr( - 'msg.userfront.signup.phone.code_mismatch', - ), + () => _phoneError = tr('msg.userfront.signup.phone.code_mismatch'), ); } } catch (e) { @@ -329,17 +319,11 @@ class _SignupScreenState extends State { 'msg.userfront.signup.password.lowercase_required', ); } else if (eStr.contains('digit') || eStr.contains('number')) { - _passwordError = tr( - 'msg.userfront.signup.password.number_required', - ); + _passwordError = tr('msg.userfront.signup.password.number_required'); } else if (eStr.contains('symbol') || eStr.contains('special')) { - _passwordError = tr( - 'msg.userfront.signup.password.symbol_required', - ); + _passwordError = tr('msg.userfront.signup.password.symbol_required'); } else if (eStr.contains('length') || eStr.contains('12 characters')) { - _passwordError = tr( - 'msg.userfront.signup.password.length_required', - ); + _passwordError = tr('msg.userfront.signup.password.length_required'); } else { _passwordError = tr( 'msg.userfront.signup.failed', @@ -357,18 +341,12 @@ class _SignupScreenState extends State { context: context, barrierDismissible: false, builder: (context) => AlertDialog( - title: Text( - tr('msg.userfront.signup.success.title'), - ), - content: Text( - tr('msg.userfront.signup.success.body'), - ), + title: Text(tr('msg.userfront.signup.success.title')), + content: Text(tr('msg.userfront.signup.success.body')), actions: [ TextButton( onPressed: () => context.go('/signin'), - child: Text( - tr('ui.userfront.signup.success.action'), - ), + child: Text(tr('ui.userfront.signup.success.action')), ), ], ), @@ -382,25 +360,13 @@ class _SignupScreenState extends State { padding: const EdgeInsets.symmetric(vertical: 20), child: Row( children: [ - _stepCircle( - 1, - tr('ui.userfront.signup.steps.agreement'), - ), + _stepCircle(1, tr('ui.userfront.signup.steps.agreement')), _stepLine(1), - _stepCircle( - 2, - tr('ui.userfront.signup.steps.verify'), - ), + _stepCircle(2, tr('ui.userfront.signup.steps.verify')), _stepLine(2), - _stepCircle( - 3, - tr('ui.userfront.signup.steps.profile'), - ), + _stepCircle(3, tr('ui.userfront.signup.steps.profile')), _stepLine(3), - _stepCircle( - 4, - tr('ui.userfront.signup.steps.password'), - ), + _stepCircle(4, tr('ui.userfront.signup.steps.password')), ], ), ); @@ -454,9 +420,7 @@ class _SignupScreenState extends State { crossAxisAlignment: CrossAxisAlignment.stretch, children: [ Text( - tr( - 'msg.userfront.signup.agreement.title', - ), + tr('msg.userfront.signup.agreement.title'), style: const TextStyle( fontSize: 20, fontWeight: FontWeight.bold, @@ -489,18 +453,14 @@ class _SignupScreenState extends State { ), const SizedBox(height: 16), _agreementSection( - title: tr( - 'ui.userfront.signup.agreement.tos_title', - ), + title: tr('ui.userfront.signup.agreement.tos_title'), content: _tosText, value: _termsAccepted, onChanged: (val) => setState(() => _termsAccepted = val!), ), const SizedBox(height: 16), _agreementSection( - title: tr( - 'ui.userfront.signup.agreement.privacy_title', - ), + title: tr('ui.userfront.signup.agreement.privacy_title'), content: _privacyText, value: _privacyAccepted, onChanged: (val) => setState(() => _privacyAccepted = val!), @@ -745,9 +705,7 @@ class _SignupScreenState extends State { crossAxisAlignment: CrossAxisAlignment.stretch, children: [ Text( - tr( - 'msg.userfront.signup.auth.title', - ), + tr('msg.userfront.signup.auth.title'), style: const TextStyle(fontSize: 20, fontWeight: FontWeight.bold), ), const SizedBox(height: 16), @@ -764,9 +722,7 @@ class _SignupScreenState extends State { const SizedBox(width: 8), Expanded( child: Text( - tr( - 'msg.userfront.signup.auth.affiliate_notice', - ), + tr('msg.userfront.signup.auth.affiliate_notice'), style: const TextStyle( fontSize: 12, color: Colors.blue, @@ -790,9 +746,7 @@ class _SignupScreenState extends State { controller: _emailController, onChanged: _checkEmailAffiliation, // 도메인 실시간 체크 decoration: InputDecoration( - labelText: tr( - 'ui.userfront.signup.auth.email.label', - ), + labelText: tr('ui.userfront.signup.auth.email.label'), border: const OutlineInputBorder(), errorText: _emailError, hintText: 'example@hanmaceng.co.kr', @@ -815,9 +769,7 @@ class _SignupScreenState extends State { child: Text( _emailSeconds > 0 ? tr('ui.common.resend') - : tr( - 'ui.userfront.signup.auth.request_code', - ), + : tr('ui.userfront.signup.auth.request_code'), ), ), ), @@ -828,9 +780,7 @@ class _SignupScreenState extends State { TextFormField( controller: _emailCodeController, decoration: InputDecoration( - labelText: tr( - 'ui.userfront.signup.auth.code_label', - ), + labelText: tr('ui.userfront.signup.auth.code_label'), suffixText: _formatTime(_emailSeconds), border: const OutlineInputBorder(), ), @@ -848,9 +798,7 @@ class _SignupScreenState extends State { Padding( padding: const EdgeInsets.only(top: 8), child: Text( - tr( - 'msg.userfront.signup.email.verified', - ), + tr('msg.userfront.signup.email.verified'), style: const TextStyle( color: Colors.green, fontSize: 13, @@ -870,9 +818,7 @@ class _SignupScreenState extends State { child: TextFormField( controller: _phoneController, decoration: InputDecoration( - labelText: tr( - 'ui.userfront.signup.phone.label', - ), + labelText: tr('ui.userfront.signup.phone.label'), border: const OutlineInputBorder(), errorText: _phoneError, ), @@ -895,9 +841,7 @@ class _SignupScreenState extends State { child: Text( _phoneSeconds > 0 ? tr('ui.common.resend') - : tr( - 'ui.userfront.signup.auth.request_code', - ), + : tr('ui.userfront.signup.auth.request_code'), ), ), ), @@ -908,9 +852,7 @@ class _SignupScreenState extends State { TextFormField( controller: _phoneCodeController, decoration: InputDecoration( - labelText: tr( - 'ui.userfront.signup.auth.code_label', - ), + labelText: tr('ui.userfront.signup.auth.code_label'), suffixText: _formatTime(_phoneSeconds), border: const OutlineInputBorder(), ), @@ -928,9 +870,7 @@ class _SignupScreenState extends State { Padding( padding: const EdgeInsets.only(top: 8), child: Text( - tr( - 'msg.userfront.signup.phone.verified', - ), + tr('msg.userfront.signup.phone.verified'), style: const TextStyle( color: Colors.green, fontSize: 13, @@ -947,9 +887,7 @@ class _SignupScreenState extends State { crossAxisAlignment: CrossAxisAlignment.stretch, children: [ Text( - tr( - 'msg.userfront.signup.profile.title', - ), + tr('msg.userfront.signup.profile.title'), style: const TextStyle(fontSize: 20, fontWeight: FontWeight.bold), ), const SizedBox(height: 24), @@ -971,28 +909,20 @@ class _SignupScreenState extends State { key: ValueKey(_affiliationType), initialValue: _affiliationType, decoration: InputDecoration( - labelText: tr( - 'ui.userfront.signup.profile.affiliation_type', - ), + labelText: tr('ui.userfront.signup.profile.affiliation_type'), border: const OutlineInputBorder(), helperText: _isAffiliateEmail - ? tr( - 'msg.userfront.signup.profile.affiliate_hint', - ) + ? tr('msg.userfront.signup.profile.affiliate_hint') : null, ), items: [ DropdownMenuItem( value: 'GENERAL', - child: Text( - tr('domain.affiliation.general'), - ), + child: Text(tr('domain.affiliation.general')), ), DropdownMenuItem( value: 'AFFILIATE', - child: Text( - tr('domain.affiliation.affiliate'), - ), + child: Text(tr('domain.affiliation.affiliate')), ), ], onChanged: _isAffiliateEmail @@ -1019,9 +949,7 @@ class _SignupScreenState extends State { key: ValueKey(_companyCode ?? 'none'), initialValue: _companyCode, decoration: InputDecoration( - labelText: tr( - 'ui.userfront.signup.profile.company', - ), + labelText: tr('ui.userfront.signup.profile.company'), border: const OutlineInputBorder(), ), items: [ @@ -1064,9 +992,7 @@ class _SignupScreenState extends State { decoration: InputDecoration( labelText: _affiliationType == 'AFFILIATE' ? tr('ui.userfront.signup.profile.department') - : tr( - 'ui.userfront.signup.profile.department_optional', - ), + : tr('ui.userfront.signup.profile.department_optional'), border: const OutlineInputBorder(), ), ), @@ -1076,9 +1002,7 @@ class _SignupScreenState extends State { String _buildPolicyDescription() { if (_isPolicyLoading) { - return tr( - 'msg.userfront.signup.policy.loading', - ); + return tr('msg.userfront.signup.policy.loading'); } final minLength = (_policy?['minLength'] as int?) ?? 12; final minTypes = (_policy?['minCharacterTypes'] as int?) ?? 0; @@ -1147,9 +1071,7 @@ class _SignupScreenState extends State { crossAxisAlignment: CrossAxisAlignment.stretch, children: [ Text( - tr( - 'msg.userfront.signup.password.title', - ), + tr('msg.userfront.signup.password.title'), style: const TextStyle(fontSize: 20, fontWeight: FontWeight.bold), ), const SizedBox(height: 16), @@ -1183,9 +1105,7 @@ class _SignupScreenState extends State { obscureText: true, onChanged: (_) => setState(() {}), decoration: InputDecoration( - labelText: tr( - 'ui.userfront.signup.password.label', - ), + labelText: tr('ui.userfront.signup.password.label'), border: const OutlineInputBorder(), errorText: _passwordError, ), @@ -1211,16 +1131,12 @@ class _SignupScreenState extends State { ), if (requiresUpper) _cryptoCheck( - tr( - 'msg.userfront.signup.password.rule.uppercase', - ), + tr('msg.userfront.signup.password.rule.uppercase'), hasUpper, ), if (requiresLower) _cryptoCheck( - tr( - 'msg.userfront.signup.password.rule.lowercase', - ), + tr('msg.userfront.signup.password.rule.lowercase'), hasLower, ), if (requiresNumber) @@ -1230,9 +1146,7 @@ class _SignupScreenState extends State { ), if (requiresSymbol) _cryptoCheck( - tr( - 'msg.userfront.signup.password.rule.symbol', - ), + tr('msg.userfront.signup.password.rule.symbol'), hasSpecial, ), ], @@ -1244,16 +1158,12 @@ class _SignupScreenState extends State { onChanged: (val) { setState(() { _confirmPasswordError = (val != _passwordController.text) - ? tr( - 'msg.userfront.signup.password.mismatch', - ) + ? tr('msg.userfront.signup.password.mismatch') : null; }); }, decoration: InputDecoration( - labelText: tr( - 'ui.userfront.signup.password.confirm_label', - ), + labelText: tr('ui.userfront.signup.password.confirm_label'), border: const OutlineInputBorder(), errorText: _confirmPasswordError, ), @@ -1379,12 +1289,8 @@ class _SignupScreenState extends State { ) : Text( _currentStep < 4 - ? tr( - 'ui.userfront.signup.next_step', - ) - : tr( - 'ui.userfront.signup.complete', - ), + ? tr('ui.userfront.signup.next_step') + : tr('ui.userfront.signup.complete'), ), ), ), diff --git a/userfront/lib/features/dashboard/domain/dashboard_providers.dart b/userfront/lib/features/dashboard/domain/dashboard_providers.dart index 1912d799..93577cd1 100644 --- a/userfront/lib/features/dashboard/domain/dashboard_providers.dart +++ b/userfront/lib/features/dashboard/domain/dashboard_providers.dart @@ -172,9 +172,7 @@ class AuthTimelineNotifier extends Notifier { state = state.copyWith( isLoading: false, isLoadingMore: false, - error: tr( - 'msg.userfront.dashboard.timeline.load_error', - ), + error: tr('msg.userfront.dashboard.timeline.load_error'), ); } } diff --git a/userfront/lib/features/dashboard/presentation/dashboard_screen.dart b/userfront/lib/features/dashboard/presentation/dashboard_screen.dart index 39081868..4d86c2f8 100644 --- a/userfront/lib/features/dashboard/presentation/dashboard_screen.dart +++ b/userfront/lib/features/dashboard/presentation/dashboard_screen.dart @@ -71,9 +71,7 @@ class _DashboardScreenState extends ConsumerState { final confirmed = await showDialog( context: context, builder: (context) => AlertDialog( - title: Text( - tr('ui.userfront.dashboard.revoke.title'), - ), + title: Text(tr('ui.userfront.dashboard.revoke.title')), content: Text( tr( 'msg.userfront.dashboard.revoke.confirm', @@ -88,11 +86,7 @@ class _DashboardScreenState extends ConsumerState { TextButton( onPressed: () => Navigator.of(context).pop(true), style: TextButton.styleFrom(foregroundColor: Colors.red), - child: Text( - tr( - 'ui.userfront.dashboard.revoke.confirm_button', - ), - ), + child: Text(tr('ui.userfront.dashboard.revoke.confirm_button')), ), ], ), @@ -166,17 +160,13 @@ class _DashboardScreenState extends ConsumerState { crossAxisAlignment: CrossAxisAlignment.start, children: [ Text( - tr( - 'ui.userfront.dashboard.scopes.title', - ), + tr('ui.userfront.dashboard.scopes.title'), style: const TextStyle(fontWeight: FontWeight.bold), ), const SizedBox(height: 8), if (item.scopes.isEmpty) Text( - tr( - 'msg.userfront.dashboard.scopes.empty', - ), + tr('msg.userfront.dashboard.scopes.empty'), style: const TextStyle(color: Colors.grey), ) else @@ -199,9 +189,7 @@ class _DashboardScreenState extends ConsumerState { ), const SizedBox(height: 24), Text( - tr( - 'ui.userfront.dashboard.status_history', - ), + tr('ui.userfront.dashboard.status_history'), style: const TextStyle(fontWeight: FontWeight.bold), ), const SizedBox(height: 8), @@ -219,9 +207,7 @@ class _DashboardScreenState extends ConsumerState { builder: (context) { final statusLabel = item.status == 'active' ? tr('ui.common.status.active') - : tr( - 'ui.userfront.dashboard.status.revoked', - ); + : tr('ui.userfront.dashboard.status.revoked'); return Text( tr( 'msg.userfront.dashboard.current_status', @@ -534,12 +520,8 @@ class _DashboardScreenState extends ConsumerState { ? log.detailMap['approved_session_id'].toString() : log.sessionId; final tooltipLabel = isOidc - ? tr( - 'ui.userfront.dashboard.approved_session.userfront', - ) - : tr( - 'ui.userfront.dashboard.approved_session.default', - ); + ? tr('ui.userfront.dashboard.approved_session.userfront') + : tr('ui.userfront.dashboard.approved_session.default'); final tooltip = approvedSessionId.isEmpty ? tr( 'msg.userfront.dashboard.approved_session.none', @@ -558,9 +540,7 @@ class _DashboardScreenState extends ConsumerState { ScaffoldMessenger.of(context).showSnackBar( SnackBar( content: Text( - tr( - 'msg.userfront.dashboard.session_id_copied', - ), + tr('msg.userfront.dashboard.session_id_copied'), ), ), ); @@ -628,12 +608,8 @@ class _DashboardScreenState extends ConsumerState { ? log.detailMap['approved_session_id'].toString() : log.sessionId; final tooltipLabel = isOidc - ? tr( - 'ui.userfront.dashboard.approved_session.userfront', - ) - : tr( - 'ui.userfront.dashboard.approved_session.default', - ); + ? tr('ui.userfront.dashboard.approved_session.userfront') + : tr('ui.userfront.dashboard.approved_session.default'); return InkWell( onTap: approvedSessionId.isEmpty ? null @@ -643,9 +619,7 @@ class _DashboardScreenState extends ConsumerState { ScaffoldMessenger.of(context).showSnackBar( SnackBar( content: Text( - tr( - 'msg.userfront.dashboard.session_id_copied', - ), + tr('msg.userfront.dashboard.session_id_copied'), ), ), ); @@ -692,9 +666,7 @@ class _DashboardScreenState extends ConsumerState { final label = _appLabelForLog(log); final clientId = log.clientId; final tooltip = clientId.isEmpty - ? tr( - 'msg.userfront.dashboard.client_id_missing', - ) + ? tr('msg.userfront.dashboard.client_id_missing') : tr( 'msg.userfront.dashboard.client_id', fallback: 'Client ID: {{id}}', @@ -814,21 +786,15 @@ class _DashboardScreenState extends ConsumerState { const SizedBox(height: 28), ], _buildSectionTitle( - tr( - 'ui.userfront.sections.apps', - ), - tr( - 'msg.userfront.sections.apps_subtitle', - ), + tr('ui.userfront.sections.apps'), + tr('msg.userfront.sections.apps_subtitle'), ), const SizedBox(height: 12), _buildActivitySection(isMobile), const SizedBox(height: 28), _buildSectionTitle( tr('ui.userfront.sections.audit'), - tr( - 'msg.userfront.sections.audit_subtitle', - ), + tr('msg.userfront.sections.audit_subtitle'), ), const SizedBox(height: 12), _buildAccessHistory(timelineState, timelineWide), @@ -857,10 +823,7 @@ class _DashboardScreenState extends ConsumerState { crossAxisAlignment: CrossAxisAlignment.start, children: [ Text( - tr( - 'msg.userfront.greeting', - params: {'name': userName}, - ), + tr('msg.userfront.greeting', params: {'name': userName}), style: const TextStyle( fontSize: 22, fontWeight: FontWeight.bold, @@ -963,9 +926,7 @@ class _DashboardScreenState extends ConsumerState { crossAxisAlignment: CrossAxisAlignment.start, children: [ Text( - tr( - 'msg.userfront.dashboard.activities.empty', - ), + tr('msg.userfront.dashboard.activities.empty'), style: TextStyle( fontSize: 14, color: Colors.grey[700], @@ -974,9 +935,7 @@ class _DashboardScreenState extends ConsumerState { ), const SizedBox(height: 6), Text( - tr( - 'msg.userfront.dashboard.activities.empty_detail', - ), + tr('msg.userfront.dashboard.activities.empty_detail'), style: TextStyle(fontSize: 12, color: Colors.grey[600]), ), ], @@ -992,9 +951,7 @@ class _DashboardScreenState extends ConsumerState { crossAxisAlignment: CrossAxisAlignment.start, children: [ Text( - tr( - 'msg.userfront.dashboard.activities.error', - ), + tr('msg.userfront.dashboard.activities.error'), style: TextStyle(fontSize: 12, color: Colors.grey[600]), ), const SizedBox(height: 8), @@ -1194,9 +1151,7 @@ class _DashboardScreenState extends ConsumerState { child: Text( item.status == 'active' ? tr('ui.common.status.active') - : tr( - 'ui.userfront.dashboard.status.revoked', - ), + : tr('ui.userfront.dashboard.status.revoked'), style: TextStyle( fontSize: 11, color: statusColor, @@ -1264,12 +1219,8 @@ class _DashboardScreenState extends ConsumerState { ) : Text( item.isRevoked - ? tr( - 'ui.userfront.dashboard.status.revoked', - ) - : tr( - 'ui.userfront.dashboard.revoke.title', - ), + ? tr('ui.userfront.dashboard.status.revoked') + : tr('ui.userfront.dashboard.revoke.title'), style: const TextStyle(fontSize: 13), ), ), @@ -1303,22 +1254,14 @@ class _DashboardScreenState extends ConsumerState { } messenger.showSnackBar( SnackBar( - content: Text( - tr( - 'msg.userfront.dashboard.link_open_error', - ), - ), + content: Text(tr('msg.userfront.dashboard.link_open_error')), ), ); } else { if (!mounted) return; messenger.showSnackBar( SnackBar( - content: Text( - tr( - 'msg.userfront.dashboard.link_missing', - ), - ), + content: Text(tr('msg.userfront.dashboard.link_missing')), ), ); } @@ -1344,11 +1287,7 @@ class _DashboardScreenState extends ConsumerState { child: Column( mainAxisSize: MainAxisSize.min, children: [ - Text( - tr( - 'msg.userfront.dashboard.audit_load_error', - ), - ), + Text(tr('msg.userfront.dashboard.audit_load_error')), const SizedBox(height: 8), TextButton( onPressed: () => @@ -1365,9 +1304,7 @@ class _DashboardScreenState extends ConsumerState { return _buildHistoryContainer( child: Center( child: Text( - tr( - 'msg.userfront.dashboard.audit_empty', - ), + tr('msg.userfront.dashboard.audit_empty'), style: TextStyle(color: Colors.grey[600]), ), ), @@ -1416,16 +1353,10 @@ class _DashboardScreenState extends ConsumerState { ), ), DataColumn( - label: Text( - tr('ui.userfront.audit.table.date'), - ), + label: Text(tr('ui.userfront.audit.table.date')), ), DataColumn( - label: Text( - tr( - 'ui.userfront.audit.table.app', - ), - ), + label: Text(tr('ui.userfront.audit.table.app')), ), DataColumn( label: Text( @@ -1433,30 +1364,16 @@ class _DashboardScreenState extends ConsumerState { ), ), DataColumn( - label: Text( - tr( - 'ui.userfront.audit.table.device', - ), - ), + label: Text(tr('ui.userfront.audit.table.device')), ), DataColumn( - label: Text( - tr( - 'ui.userfront.audit.table.auth_method', - ), - ), + label: Text(tr('ui.userfront.audit.table.auth_method')), ), DataColumn( - label: Text( - tr( - 'ui.userfront.audit.table.result', - ), - ), + label: Text(tr('ui.userfront.audit.table.result')), ), DataColumn( - label: Text( - tr('ui.userfront.audit.table.status'), - ), + label: Text(tr('ui.userfront.audit.table.status')), ), ], rows: state.items.map((log) { @@ -1505,9 +1422,7 @@ class _DashboardScreenState extends ConsumerState { ), DataCell( _selectableText( - tr( - 'ui.userfront.audit.table.pending', - ), + tr('ui.userfront.audit.table.pending'), style: const TextStyle(color: Colors.grey), ), ), @@ -1643,11 +1558,7 @@ class _DashboardScreenState extends ConsumerState { child: Row( mainAxisAlignment: MainAxisAlignment.center, children: [ - Text( - tr( - 'msg.userfront.audit.load_more_error', - ), - ), + Text(tr('msg.userfront.audit.load_more_error')), TextButton( onPressed: () => ref.read(authTimelineProvider.notifier).loadMore(), diff --git a/userfront/lib/features/profile/data/repositories/profile_repository.dart b/userfront/lib/features/profile/data/repositories/profile_repository.dart index 059376b8..d46fdcfa 100644 --- a/userfront/lib/features/profile/data/repositories/profile_repository.dart +++ b/userfront/lib/features/profile/data/repositories/profile_repository.dart @@ -25,9 +25,7 @@ class ProfileRepository { final token = await _getToken(); final useCookie = AuthTokenStore.usesCookie(); if (token == null && !useCookie) { - throw Exception( - tr('err.userfront.session.missing'), - ); + throw Exception(tr('err.userfront.session.missing')); } final url = Uri.parse('$_baseUrl/api/v1/user/me'); @@ -59,9 +57,7 @@ class ProfileRepository { final token = await _getToken(); final useCookie = AuthTokenStore.usesCookie(); if (token == null && !useCookie) { - throw Exception( - tr('err.userfront.session.missing'), - ); + throw Exception(tr('err.userfront.session.missing')); } final url = Uri.parse('$_baseUrl/api/v1/user/me'); @@ -95,9 +91,7 @@ class ProfileRepository { final token = await _getToken(); final useCookie = AuthTokenStore.usesCookie(); if (token == null && !useCookie) { - throw Exception( - tr('err.userfront.session.missing'), - ); + throw Exception(tr('err.userfront.session.missing')); } final url = Uri.parse('$_baseUrl/api/v1/user/me/send-code'); @@ -130,9 +124,7 @@ class ProfileRepository { final token = await _getToken(); final useCookie = AuthTokenStore.usesCookie(); if (token == null && !useCookie) { - throw Exception( - tr('err.userfront.session.missing'), - ); + throw Exception(tr('err.userfront.session.missing')); } final url = Uri.parse('$_baseUrl/api/v1/user/me/password'); @@ -165,9 +157,7 @@ class ProfileRepository { final token = await _getToken(); final useCookie = AuthTokenStore.usesCookie(); if (token == null && !useCookie) { - throw Exception( - tr('err.userfront.session.missing'), - ); + throw Exception(tr('err.userfront.session.missing')); } final url = Uri.parse('$_baseUrl/api/v1/user/me/verify-code'); diff --git a/userfront/lib/features/profile/presentation/pages/profile_page.dart b/userfront/lib/features/profile/presentation/pages/profile_page.dart index b7da7e7b..5c06da38 100644 --- a/userfront/lib/features/profile/presentation/pages/profile_page.dart +++ b/userfront/lib/features/profile/presentation/pages/profile_page.dart @@ -232,13 +232,7 @@ class _ProfilePageState extends ConsumerState { }); if (mounted) { ScaffoldMessenger.of(context).showSnackBar( - SnackBar( - content: Text( - tr( - 'msg.userfront.profile.phone.code_sent', - ), - ), - ), + SnackBar(content: Text(tr('msg.userfront.profile.phone.code_sent'))), ); } } catch (e) { @@ -272,11 +266,7 @@ class _ProfilePageState extends ConsumerState { }); if (mounted) { ScaffoldMessenger.of(context).showSnackBar( - SnackBar( - content: Text( - tr('msg.userfront.profile.phone.verified'), - ), - ), + SnackBar(content: Text(tr('msg.userfront.profile.phone.verified'))), ); } if (_editingField == 'phone') { @@ -315,17 +305,14 @@ class _ProfilePageState extends ConsumerState { } if (newPassword.isEmpty) { setState( - () => _passwordError = tr( - 'msg.userfront.profile.password.new_required', - ), + () => + _passwordError = tr('msg.userfront.profile.password.new_required'), ); return; } if (newPassword != confirmPassword) { setState( - () => _passwordError = tr( - 'msg.userfront.profile.password.mismatch', - ), + () => _passwordError = tr('msg.userfront.profile.password.mismatch'), ); return; } @@ -347,9 +334,7 @@ class _ProfilePageState extends ConsumerState { _newPasswordController?.clear(); _confirmPasswordController?.clear(); setState(() { - _passwordSuccess = tr( - 'msg.userfront.profile.password.changed', - ); + _passwordSuccess = tr('msg.userfront.profile.password.changed'); }); } catch (e) { final message = e.toString().replaceFirst('Exception: ', ''); @@ -431,22 +416,14 @@ class _ProfilePageState extends ConsumerState { if (_editingField == 'name' && nextName.isEmpty) { ScaffoldMessenger.of(context).showSnackBar( - SnackBar( - content: Text( - tr('msg.userfront.profile.name_required'), - ), - ), + SnackBar(content: Text(tr('msg.userfront.profile.name_required'))), ); return; } if (_editingField == 'department' && nextDepartment.isEmpty) { ScaffoldMessenger.of(context).showSnackBar( SnackBar( - content: Text( - tr( - 'msg.userfront.profile.department_required', - ), - ), + content: Text(tr('msg.userfront.profile.department_required')), ), ); return; @@ -454,24 +431,14 @@ class _ProfilePageState extends ConsumerState { if (_editingField == 'phone') { if (nextPhone.isEmpty) { ScaffoldMessenger.of(context).showSnackBar( - SnackBar( - content: Text( - tr( - 'msg.userfront.profile.phone_required', - ), - ), - ), + SnackBar(content: Text(tr('msg.userfront.profile.phone_required'))), ); return; } if (_isPhoneChanged && !_isPhoneVerified) { ScaffoldMessenger.of(context).showSnackBar( SnackBar( - content: Text( - tr( - 'msg.userfront.profile.phone_verify_required', - ), - ), + content: Text(tr('msg.userfront.profile.phone_verify_required')), ), ); return; @@ -511,13 +478,7 @@ class _ProfilePageState extends ConsumerState { _departmentTouched = false; }); ScaffoldMessenger.of(context).showSnackBar( - SnackBar( - content: Text( - tr( - 'msg.userfront.profile.update_success', - ), - ), - ), + SnackBar(content: Text(tr('msg.userfront.profile.update_success'))), ); } } catch (e) { @@ -657,10 +618,7 @@ class _ProfilePageState extends ConsumerState { crossAxisAlignment: CrossAxisAlignment.start, children: [ Text( - tr( - 'msg.userfront.profile.greeting', - params: {'name': name}, - ), + tr('msg.userfront.profile.greeting', params: {'name': name}), style: const TextStyle( fontSize: 20, fontWeight: FontWeight.w700, @@ -833,9 +791,7 @@ class _ProfilePageState extends ConsumerState { child: Text( _isCodeSent ? tr('ui.common.resend') - : tr( - 'ui.userfront.profile.phone.request_code', - ), + : tr('ui.userfront.profile.phone.request_code'), ), ), const SizedBox(width: 8), @@ -859,9 +815,7 @@ class _ProfilePageState extends ConsumerState { onSubmitted: (_) => _verifyCode(profile), decoration: InputDecoration( border: const OutlineInputBorder(), - hintText: tr( - 'ui.userfront.profile.phone.code_hint', - ), + hintText: tr('ui.userfront.profile.phone.code_hint'), ), ), ), @@ -877,9 +831,7 @@ class _ProfilePageState extends ConsumerState { Padding( padding: const EdgeInsets.only(top: 8.0), child: Text( - tr( - 'msg.userfront.profile.phone.verify_notice', - ), + tr('msg.userfront.profile.phone.verify_notice'), style: const TextStyle(color: Colors.orange, fontSize: 12), ), ), @@ -898,9 +850,7 @@ class _ProfilePageState extends ConsumerState { ), const SizedBox(height: 8), Text( - tr( - 'msg.userfront.profile.password.subtitle', - ), + tr('msg.userfront.profile.password.subtitle'), style: const TextStyle(color: Color(0xFF6B7280)), ), const SizedBox(height: 16), @@ -908,9 +858,7 @@ class _ProfilePageState extends ConsumerState { controller: _currentPasswordController, obscureText: !_showCurrentPassword, decoration: InputDecoration( - labelText: tr( - 'ui.userfront.profile.password.current', - ), + labelText: tr('ui.userfront.profile.password.current'), border: const OutlineInputBorder(), suffixIcon: IconButton( icon: Icon( @@ -929,9 +877,7 @@ class _ProfilePageState extends ConsumerState { controller: _newPasswordController, obscureText: !_showNewPassword, decoration: InputDecoration( - labelText: tr( - 'ui.userfront.profile.password.new', - ), + labelText: tr('ui.userfront.profile.password.new'), border: const OutlineInputBorder(), suffixIcon: IconButton( icon: Icon( @@ -948,9 +894,7 @@ class _ProfilePageState extends ConsumerState { controller: _confirmPasswordController, obscureText: !_showConfirmPassword, decoration: InputDecoration( - labelText: tr( - 'ui.userfront.profile.password.confirm', - ), + labelText: tr('ui.userfront.profile.password.confirm'), border: const OutlineInputBorder(), suffixIcon: IconButton( icon: Icon( @@ -986,20 +930,12 @@ class _ProfilePageState extends ConsumerState { height: 18, child: CircularProgressIndicator(strokeWidth: 2), ) - : Text( - tr( - 'ui.userfront.profile.password.change', - ), - ), + : Text(tr('ui.userfront.profile.password.change')), ), const SizedBox(width: 12), TextButton( onPressed: () => context.go('/recovery'), - child: Text( - tr( - 'ui.userfront.profile.password.forgot', - ), - ), + child: Text(tr('ui.userfront.profile.password.forgot')), ), ], ), @@ -1024,9 +960,7 @@ class _ProfilePageState extends ConsumerState { const SizedBox(height: 28), _buildSectionTitle( tr('ui.userfront.profile.section.basic'), - tr( - 'msg.userfront.profile.section.basic', - ), + tr('msg.userfront.profile.section.basic'), ), const SizedBox(height: 12), _buildCard( @@ -1034,9 +968,7 @@ class _ProfilePageState extends ConsumerState { children: [ _buildEditableTile( field: 'name', - label: tr( - 'ui.userfront.profile.field.name', - ), + label: tr('ui.userfront.profile.field.name'), value: profile.name, profile: profile, isUpdating: isUpdating, @@ -1044,9 +976,7 @@ class _ProfilePageState extends ConsumerState { ), const Divider(height: 24), _buildReadOnlyTile( - tr( - 'ui.userfront.profile.field.email', - ), + tr('ui.userfront.profile.field.email'), profile.email, ), const Divider(height: 24), @@ -1056,12 +986,8 @@ class _ProfilePageState extends ConsumerState { ), const SizedBox(height: 28), _buildSectionTitle( - tr( - 'ui.userfront.profile.section.organization', - ), - tr( - 'msg.userfront.profile.section.organization', - ), + tr('ui.userfront.profile.section.organization'), + tr('msg.userfront.profile.section.organization'), ), const SizedBox(height: 12), _buildCard( @@ -1069,9 +995,7 @@ class _ProfilePageState extends ConsumerState { children: [ _buildEditableTile( field: 'department', - label: tr( - 'ui.userfront.profile.field.department', - ), + label: tr('ui.userfront.profile.field.department'), value: profile.department, profile: profile, isUpdating: isUpdating, @@ -1079,26 +1003,20 @@ class _ProfilePageState extends ConsumerState { ), const Divider(height: 24), _buildReadOnlyTile( - tr( - 'ui.userfront.profile.field.affiliation', - ), + tr('ui.userfront.profile.field.affiliation'), profile.affiliationType, ), if (profile.tenant != null) ...[ const Divider(height: 24), _buildReadOnlyTile( - tr( - 'ui.userfront.profile.field.tenant', - ), + tr('ui.userfront.profile.field.tenant'), profile.tenant!.name, ), ], if (profile.companyCode.isNotEmpty) ...[ const Divider(height: 24), _buildReadOnlyTile( - tr( - 'ui.userfront.profile.field.company_code', - ), + tr('ui.userfront.profile.field.company_code'), profile.companyCode, ), ], @@ -1108,9 +1026,7 @@ class _ProfilePageState extends ConsumerState { const SizedBox(height: 28), _buildSectionTitle( tr('ui.userfront.profile.section.security'), - tr( - 'msg.userfront.profile.section.security', - ), + tr('msg.userfront.profile.section.security'), ), const SizedBox(height: 12), _buildPasswordSection(), @@ -1137,20 +1053,14 @@ class _ProfilePageState extends ConsumerState { final profile = profileState.value ?? _cachedProfile; if (profile == null) { return Scaffold( - appBar: AppBar( - title: Text(tr('ui.userfront.nav.profile')), - ), + appBar: AppBar(title: Text(tr('ui.userfront.nav.profile'))), body: profileState.isLoading ? const Center(child: CircularProgressIndicator()) : Center( child: Column( mainAxisAlignment: MainAxisAlignment.center, children: [ - Text( - tr( - 'msg.userfront.profile.load_failed', - ), - ), + Text(tr('msg.userfront.profile.load_failed')), const SizedBox(height: 16), ElevatedButton( onPressed: () => diff --git a/userfront/lib/i18n_data.dart b/userfront/lib/i18n_data.dart index 12f54d2c..e252bd3d 100644 --- a/userfront/lib/i18n_data.dart +++ b/userfront/lib/i18n_data.dart @@ -29,7 +29,8 @@ const Map koStrings = { "msg.admin.api_keys.create.scopes_count": "총 {{count}}개의 권한이 할당됩니다.", "msg.admin.api_keys.create.scopes_hint": "생성 즉시 활성화되어 사용 가능합니다.", "msg.admin.api_keys.create.subtitle": "내부 시스템 연동을 위한 보안 인증 키를 구성합니다.", - "msg.admin.api_keys.create.success.copy_hint": "복사 버튼을 눌러 안전한 곳(비밀번호 관리자 등)에 저장하세요.", + "msg.admin.api_keys.create.success.copy_hint": + "복사 버튼을 눌러 안전한 곳(비밀번호 관리자 등)에 저장하세요.", "msg.admin.api_keys.create.success.notice": "아래의 비밀번호(Secret)는 보안을 위해 ", "msg.admin.api_keys.create.success.notice_emphasis": "지금 한 번만", "msg.admin.api_keys.create.success.notice_suffix": "표시됩니다.", @@ -37,14 +38,16 @@ const Map koStrings = { "msg.admin.api_keys.list.empty": "등록된 API 키가 없습니다.", "msg.admin.api_keys.list.fetch_error": "API 키 목록 조회에 실패했습니다.", "msg.admin.api_keys.list.registry.count": "총 {{count}}개 API 키", - "msg.admin.api_keys.list.subtitle": "서버 간 통신(Machine-to-Machine)을 위한 API 키를 발급하고 관리합니다.", + "msg.admin.api_keys.list.subtitle": + "서버 간 통신(Machine-to-Machine)을 위한 API 키를 발급하고 관리합니다.", "msg.admin.audit.empty": "아직 수집된 감사 로그가 없습니다.", "msg.admin.audit.end": "End of audit feed", "msg.admin.audit.filters.empty": "필터 없음", "msg.admin.audit.load_error": "Error loading logs: {{error}}", "msg.admin.audit.loading": "Loading audit logs...", "msg.admin.audit.registry.count": "로드된 로그 {{count}}건", - "msg.admin.audit.subtitle": "Command 요청 기반 ClickHouse 로그를 조회합니다. 사용자/테넌트는 추후 세션 연동 시 자동 채워집니다.", + "msg.admin.audit.subtitle": + "Command 요청 기반 ClickHouse 로그를 조회합니다. 사용자/테넌트는 추후 세션 연동 시 자동 채워집니다.", "msg.admin.groups.list.subtitle": "이 테넌트에 정의된 사용자 그룹 목록입니다.", "msg.admin.groups.members.count": "{{count}} 명", "msg.admin.groups.members.empty": "멤버가 없습니다.", @@ -52,33 +55,43 @@ const Map koStrings = { "msg.admin.groups.prompt.user_id": "추가할 사용자의 UUID를 입력하세요:", "msg.admin.header.subtitle": "Tenant isolation & least privilege by default", "msg.admin.idp_env_prod": "IDP env: prod", - "msg.admin.notice.idp_policy": "IDP 관리 키는 서버 내부 래핑 API로만 사용하며, 감사·레이트리밋을 기본 적용합니다.", + "msg.admin.notice.idp_policy": + "IDP 관리 키는 서버 내부 래핑 API로만 사용하며, 감사·레이트리밋을 기본 적용합니다.", "msg.admin.notice.scope": "관리 기능은 /admin 네임스페이스에서만 노출합니다.", "msg.admin.overview.description": "모든 테넌트 공통 지표와 정책 상태를 한 곳에서 확인합니다.", "msg.admin.overview.idp_fallback": "Fallback: Descope", "msg.admin.overview.idp_primary": "IDP: Ory primary", - "msg.admin.overview.playbook.description": "운영 정책, 레이트리밋, 감사 로그의 기본 룰을 요약합니다.", - "msg.admin.overview.playbook.idp_body": "모든 IDP 호출은 backend를 통해서만 수행하며, Hydra/Kratos admin 포트는 외부에 노출하지 않습니다.", + "msg.admin.overview.playbook.description": + "운영 정책, 레이트리밋, 감사 로그의 기본 룰을 요약합니다.", + "msg.admin.overview.playbook.idp_body": + "모든 IDP 호출은 backend를 통해서만 수행하며, Hydra/Kratos admin 포트는 외부에 노출하지 않습니다.", "msg.admin.overview.playbook.idp_title": "Backend-only IDP access", - "msg.admin.overview.playbook.tenant_body": "Tenant 헤더와 감사 로그 규칙을 기본 적용하며, 향후 Keto 정책으로 확장 예정입니다.", + "msg.admin.overview.playbook.tenant_body": + "Tenant 헤더와 감사 로그 규칙을 기본 적용하며, 향후 Keto 정책으로 확장 예정입니다.", "msg.admin.overview.playbook.tenant_title": "Tenant isolation", "msg.admin.overview.quick_links.description": "주요 운영 화면으로 바로 이동합니다.", "msg.admin.scope_admin": "Scoped to /admin", "msg.admin.session_ttl": "Session TTL: 15m admin", "msg.admin.tenant_headers": "Tenant-aware headers", - "msg.admin.tenants.create.form.domains_help": "Users with these email domains will be automatically assigned to this tenant.", - "msg.admin.tenants.create.memo.body": "생성 직후에는 기본 활성 상태로 부여되며, 필요 시 상태를 수정하세요.", - "msg.admin.tenants.create.memo.subtitle": "Tenant 권한 정책은 추후 Keto 연계로 확장 예정입니다.", - "msg.admin.tenants.create.profile.subtitle": "필수 정보만 입력해도 생성 가능합니다. Slug는 없으면 자동 생성됩니다.", + "msg.admin.tenants.create.form.domains_help": + "Users with these email domains will be automatically assigned to this tenant.", + "msg.admin.tenants.create.memo.body": + "생성 직후에는 기본 활성 상태로 부여되며, 필요 시 상태를 수정하세요.", + "msg.admin.tenants.create.memo.subtitle": + "Tenant 권한 정책은 추후 Keto 연계로 확장 예정입니다.", + "msg.admin.tenants.create.profile.subtitle": + "필수 정보만 입력해도 생성 가능합니다. Slug는 없으면 자동 생성됩니다.", "msg.admin.tenants.create.subtitle": "글로벌 운영 기준의 신규 테넌트를 등록합니다.", "msg.admin.tenants.delete_confirm": "테넌트 \\\"{{name}}\\\"를 삭제할까요?", "msg.admin.tenants.empty": "아직 등록된 테넌트가 없습니다.", "msg.admin.tenants.fetch_error": "테넌트 목록 조회에 실패했습니다.", "msg.admin.tenants.members.empty": "소속된 사용자가 없습니다.", "msg.admin.tenants.registry.count": "총 {{count}}개 테넌트", - "msg.admin.tenants.schema.empty": "No custom fields defined. Click \\\"Add Field\\\" to begin.", + "msg.admin.tenants.schema.empty": + "No custom fields defined. Click \\\"Add Field\\\" to begin.", "msg.admin.tenants.schema.missing_id": "Tenant ID missing", - "msg.admin.tenants.schema.subtitle": "Define custom attributes for users in this tenant.", + "msg.admin.tenants.schema.subtitle": + "Define custom attributes for users in this tenant.", "msg.admin.tenants.schema.update_error": "Failed to update schema", "msg.admin.tenants.schema.update_success": "Schema updated successfully", "msg.admin.tenants.sub.empty": "하위 테넌트가 없습니다.", @@ -88,19 +101,23 @@ const Map koStrings = { "msg.admin.users.create.error": "사용자 생성에 실패했습니다.", "msg.admin.users.create.form.email_required": "이메일은 필수입니다.", "msg.admin.users.create.form.name_required": "이름은 필수입니다.", - "msg.admin.users.create.form.password_auto_help": "비워두면 시스템이 초기 비밀번호를 자동 생성합니다.", + "msg.admin.users.create.form.password_auto_help": + "비워두면 시스템이 초기 비밀번호를 자동 생성합니다.", "msg.admin.users.create.form.password_manual_help": "초기 비밀번호를 직접 설정합니다.", "msg.admin.users.create.form.role_help": "시스템 접근 권한을 결정합니다.", "msg.admin.users.create.password_generated.default": "초기 비밀번호가 생성되었습니다.", - "msg.admin.users.create.password_generated.with_email": "{{email}} 계정의 초기 비밀번호입니다.", + "msg.admin.users.create.password_generated.with_email": + "{{email}} 계정의 초기 비밀번호입니다.", "msg.admin.users.create.password_required": "비밀번호를 입력하거나 자동 생성을 사용해 주세요.", "msg.admin.users.detail.edit_subtitle": "{{email}} 계정의 정보를 수정합니다.", "msg.admin.users.detail.form.name_required": "이름은 필수입니다.", "msg.admin.users.detail.not_found": "사용자를 찾을 수 없습니다.", - "msg.admin.users.detail.security.password_hint": "비밀번호를 변경하려면 입력하세요. 비워두면 현재 비밀번호가 유지됩니다.", + "msg.admin.users.detail.security.password_hint": + "비밀번호를 변경하려면 입력하세요. 비워두면 현재 비밀번호가 유지됩니다.", "msg.admin.users.detail.update_error": "사용자 수정에 실패했습니다.", "msg.admin.users.detail.update_success": "사용자 정보가 수정되었습니다.", - "msg.admin.users.list.delete_confirm": "사용자 \\\"{{name}}\\\"을(를) 정말 삭제하시겠습니까?", + "msg.admin.users.list.delete_confirm": + "사용자 \\\"{{name}}\\\"을(를) 정말 삭제하시겠습니까?", "msg.admin.users.list.empty": "검색 결과가 없습니다.", "msg.admin.users.list.fetch_error": "사용자 목록 조회에 실패했습니다.", "msg.admin.users.list.registry.count": "총 {{count}}명의 사용자가 등록되어 있습니다.", @@ -111,7 +128,8 @@ const Map koStrings = { "msg.dev.clients.consents.empty": "No consents found.", "msg.dev.clients.consents.load_error": "Error loading consents: {{error}}", "msg.dev.clients.consents.loading": "Loading consents...", - "msg.dev.clients.consents.showing": "Showing {{from}} to {{to}} of {{total}} users", + "msg.dev.clients.consents.showing": + "Showing {{from}} to {{to}} of {{total}} users", "msg.dev.clients.consents.subtitle": "OIDC Relying Party 사용자 권한을 검토·관리합니다.", "msg.dev.clients.copy_client_id": "클라이언트 ID가 복사되었습니다.", "msg.dev.clients.details.copy_client_id": "Client ID가 복사되었습니다.", @@ -120,39 +138,51 @@ const Map koStrings = { "msg.dev.clients.details.load_error": "Error loading client: {{error}}", "msg.dev.clients.details.loading": "Loading client...", "msg.dev.clients.details.missing_id": "Client ID가 필요합니다.", - "msg.dev.clients.details.redirect.description": "인증 성공 후 사용자를 리다이렉트할 허용된 URL 목록입니다. 콤마(,)로 구분하여 여러 개 입력할 수 있습니다.", + "msg.dev.clients.details.redirect.description": + "인증 성공 후 사용자를 리다이렉트할 허용된 URL 목록입니다. 콤마(,)로 구분하여 여러 개 입력할 수 있습니다.", "msg.dev.clients.details.redirect_saved": "Redirect URIs가 저장되었습니다.", - "msg.dev.clients.details.rotate_confirm": "경고: Client Secret을 재발급하면 기존 시크릿은 즉시 무효화됩니다.\\\\n연동된 애플리케이션이 중단될 수 있습니다. 계속하시겠습니까?", + "msg.dev.clients.details.rotate_confirm": + "경고: Client Secret을 재발급하면 기존 시크릿은 즉시 무효화됩니다.\\\\n연동된 애플리케이션이 중단될 수 있습니다. 계속하시겠습니까?", "msg.dev.clients.details.rotate_error": "재발급 실패: {{error}}", "msg.dev.clients.details.save_error": "저장 실패: {{error}}", "msg.dev.clients.details.secret_rotated": "Client Secret이 재발급되었습니다.", "msg.dev.clients.details.secret_unavailable": "SECRET_NOT_AVAILABLE", - "msg.dev.clients.details.security.footer": "비밀키 재발행 작업에는 관리자 세션 TTL 확인과 레이트리밋, 알림 연동을 권장합니다.", - "msg.dev.clients.details.security.note": "엔드포인트는 읽기 전용으로 유지하고, 비밀키 재발행/복사는 감사 로그와 연계하세요.", + "msg.dev.clients.details.security.footer": + "비밀키 재발행 작업에는 관리자 세션 TTL 확인과 레이트리밋, 알림 연동을 권장합니다.", + "msg.dev.clients.details.security.note": + "엔드포인트는 읽기 전용으로 유지하고, 비밀키 재발행/복사는 감사 로그와 연계하세요.", "msg.dev.clients.details.subtitle": "OIDC 자격 증명과 엔드포인트를 관리합니다.", "msg.dev.clients.general.identity.logo_help": "인증 화면에 표시될 PNG/SVG URL입니다.", "msg.dev.clients.general.identity.subtitle": "앱 이름과 설명, 로고를 설정합니다.", "msg.dev.clients.general.load_error": "Error loading client: {{error}}", "msg.dev.clients.general.loading": "Loading client...", - "msg.dev.clients.general.redirect.help": "인증 후 리다이렉트될 URI를 입력하세요. 생성 후 Connection 탭에서 수정 가능합니다.", + "msg.dev.clients.general.redirect.help": + "인증 후 리다이렉트될 URI를 입력하세요. 생성 후 Connection 탭에서 수정 가능합니다.", "msg.dev.clients.general.saved": "설정이 저장되었습니다.", "msg.dev.clients.general.scopes.empty": "등록된 스코프가 없습니다.", "msg.dev.clients.general.scopes.subtitle": "이 클라이언트가 요청할 수 있는 권한 범위를 정의합니다.", - "msg.dev.clients.general.security.confidential_help": "서버 사이드 앱(예: Node.js, Java)처럼 비밀키를 안전하게 보관 가능한 경우.", - "msg.dev.clients.general.security.public_help": "SPA/모바일 앱처럼 비밀키 보관이 어려운 경우. PKCE를 기본 사용합니다.", - "msg.dev.clients.general.security.subtitle": "클라이언트 유형을 선택하세요. 보안 수준에 따라 인증 방식이 달라집니다.", - "msg.dev.clients.help.docs_body": "Includes PKCE, client_secret_basic, redirect URI validation tips.", - "msg.dev.clients.help.subtitle": "Developer guides for Confidential/Public clients, redirect URIs, and auth methods.", + "msg.dev.clients.general.security.confidential_help": + "서버 사이드 앱(예: Node.js, Java)처럼 비밀키를 안전하게 보관 가능한 경우.", + "msg.dev.clients.general.security.public_help": + "SPA/모바일 앱처럼 비밀키 보관이 어려운 경우. PKCE를 기본 사용합니다.", + "msg.dev.clients.general.security.subtitle": + "클라이언트 유형을 선택하세요. 보안 수준에 따라 인증 방식이 달라집니다.", + "msg.dev.clients.help.docs_body": + "Includes PKCE, client_secret_basic, redirect URI validation tips.", + "msg.dev.clients.help.subtitle": + "Developer guides for Confidential/Public clients, redirect URIs, and auth methods.", "msg.dev.clients.load_error": "Error loading clients: {{error}}", "msg.dev.clients.loading": "Loading clients...", - "msg.dev.clients.registry.description": "OIDC 클라이언트, 인증 방식, 리다이렉트 URI, 비밀키 재발행을 감사 로그와 함께 관리합니다.", + "msg.dev.clients.registry.description": + "OIDC 클라이언트, 인증 방식, 리다이렉트 URI, 비밀키 재발행을 감사 로그와 함께 관리합니다.", "msg.dev.clients.scopes.email": "이메일 주소 접근", "msg.dev.clients.scopes.openid": "OIDC 인증 필수 스코프", "msg.dev.clients.scopes.profile": "기본 프로필 정보 접근", "msg.dev.clients.showing": "Showing {{shown}} of {{total}} clients", "msg.dev.clients.status_update_error": "Failed to update client status", "msg.dev.clients.status_updated": "클라이언트가 {{status}}되었습니다.", - "msg.dev.dashboard.hero.body": "Hydra Admin API와 동기화된 RP 목록, 상태 토글, Consent 회수까지 devfront에서 처리하도록 준비합니다.", + "msg.dev.dashboard.hero.body": + "Hydra Admin API와 동기화된 RP 목록, 상태 토글, Consent 회수까지 devfront에서 처리하도록 준비합니다.", "msg.dev.dashboard.hero.title_emphasis": " 하나의 화면", "msg.dev.dashboard.hero.title_prefix": "RP 등록 현황과 Consent 상태를", "msg.dev.dashboard.hero.title_suffix": "에서 관리합니다.", @@ -171,12 +201,15 @@ const Map koStrings = { "msg.userfront.audit.session_id": "Session ID: {{value}}", "msg.userfront.audit.status": "현황: (준비중)", "msg.userfront.dashboard.activities.empty": "연동된 앱이 없습니다.", - "msg.userfront.dashboard.activities.empty_detail": "앱을 연동하면 최근 활동과 상태가 표시됩니다.", + "msg.userfront.dashboard.activities.empty_detail": + "앱을 연동하면 최근 활동과 상태가 표시됩니다.", "msg.userfront.dashboard.activities.error": "연동 정보를 불러오지 못했습니다.", "msg.userfront.dashboard.approved_device": "승인 기기: {{device}}", "msg.userfront.dashboard.approved_ip": "승인 IP: {{ip}}", - "msg.userfront.dashboard.approved_session.copy_click": "{{label}}: {{id}}\\\\\\\\n클릭하면 복사됩니다.", - "msg.userfront.dashboard.approved_session.copy_tap": "{{label}}: {{id}}\\\\\\\\n탭하면 복사됩니다.", + "msg.userfront.dashboard.approved_session.copy_click": + "{{label}}: {{id}}\\\\\\\\n클릭하면 복사됩니다.", + "msg.userfront.dashboard.approved_session.copy_tap": + "{{label}}: {{id}}\\\\\\\\n탭하면 복사됩니다.", "msg.userfront.dashboard.approved_session.none": "{{label}} 없음", "msg.userfront.dashboard.audit_empty": "최근 접속 이력이 없습니다.", "msg.userfront.dashboard.audit_load_error": "접속이력을 불러오지 못했습니다.", @@ -187,7 +220,8 @@ const Map koStrings = { "msg.userfront.dashboard.last_auth": "최근 인증: {{value}}", "msg.userfront.dashboard.link_missing": "이동할 페이지 주소(Client URI)가 설정되지 않았습니다.", "msg.userfront.dashboard.link_open_error": "해당 링크를 열 수 없습니다.", - "msg.userfront.dashboard.revoke.confirm": "{{app}} 앱과의 연동을 해지하시겠습니까?\\\\\\\\n해지하면 다음 로그인 시 다시 동의가 필요합니다.", + "msg.userfront.dashboard.revoke.confirm": + "{{app}} 앱과의 연동을 해지하시겠습니까?\\\\\\\\n해지하면 다음 로그인 시 다시 동의가 필요합니다.", "msg.userfront.dashboard.revoke.error": "해지 실패: {{error}}", "msg.userfront.dashboard.revoke.success": "{{app}} 연동이 해지되었습니다.", "msg.userfront.dashboard.scopes.empty": "요청된 권한이 없습니다.", @@ -202,7 +236,8 @@ const Map koStrings = { "msg.userfront.error.title_with_code": "오류: {{code}}", "msg.userfront.error.type": "오류 종류: {{type}}", "msg.userfront.error.whitelist.\$normalizedCode": "에러가 계속되면 관리자에게 문의해주세요", - "msg.userfront.forgot.description": "계정과 연결된 이메일 주소 또는 휴대폰 번호를 입력하시면, 비밀번호를 재설정할 수 있는 링크를 보내드립니다.", + "msg.userfront.forgot.description": + "계정과 연결된 이메일 주소 또는 휴대폰 번호를 입력하시면, 비밀번호를 재설정할 수 있는 링크를 보내드립니다.", "msg.userfront.forgot.dry_send": "drySend 모드: 실제 이메일/SMS는 발송되지 않습니다.", "msg.userfront.forgot.error": "전송에 실패했습니다: {{error}}", "msg.userfront.forgot.input_required": "이메일 또는 휴대폰 번호를 입력해주세요.", @@ -215,7 +250,8 @@ const Map koStrings = { "msg.userfront.login.link.missing_login_id": "이메일 또는 휴대폰 번호를 입력해 주세요.", "msg.userfront.login.link.missing_phone": "휴대폰 번호를 입력해 주세요.", "msg.userfront.login.link.resend_wait": "재발송은 {{time}} 후 가능합니다.", - "msg.userfront.login.link.short_code_help": "링크로 받은 값의 뒤 문자 2개와 숫자 6자리를 입력하셔도 로그인 할 수 있습니다.", + "msg.userfront.login.link.short_code_help": + "링크로 받은 값의 뒤 문자 2개와 숫자 6자리를 입력하셔도 로그인 할 수 있습니다.", "msg.userfront.login.link_failed": "오류: {{error}}", "msg.userfront.login.link_send_failed": "전송 실패: {{error}}", "msg.userfront.login.link_sent_email": "입력하신 이메일로 로그인 링크를 보냈습니다.", @@ -224,7 +260,8 @@ const Map koStrings = { "msg.userfront.login.no_account": "계정이 없으신가요?", "msg.userfront.login.oidc_failed": "OIDC 로그인 처리에 실패했습니다. 다시 시도해 주세요.", "msg.userfront.login.password.failed": "로그인 실패: {{error}}", - "msg.userfront.login.password.missing_credentials": "이메일(또는 전화번호)와 비밀번호를 모두 입력해주세요.", + "msg.userfront.login.password.missing_credentials": + "이메일(또는 전화번호)와 비밀번호를 모두 입력해주세요.", "msg.userfront.login.qr.load_failed": "QR 코드를 불러오지 못했습니다.", "msg.userfront.login.qr.scan_hint": "모바일 앱으로 스캔하세요", "msg.userfront.login.qr_expired": "QR 세션이 만료되었습니다.", @@ -234,7 +271,8 @@ const Map koStrings = { "msg.userfront.login.token_missing": "로그인 토큰을 확인할 수 없습니다.", "msg.userfront.login.unregistered.body": "가입되지 않은 정보입니다.\\\\n회원가입 후 이용해 주세요.", "msg.userfront.login.verification.approved": "승인되었습니다. 로그인은 요청하신 창에서 완료됩니다.", - "msg.userfront.login.verification.approved_local": "승인 되었습니다. 이 기기는 로그인되어 있는 상태입니다. 원격 창도 로그인이 될 예정입니다", + "msg.userfront.login.verification.approved_local": + "승인 되었습니다. 이 기기는 로그인되어 있는 상태입니다. 원격 창도 로그인이 될 예정입니다", "msg.userfront.login.verification.success": "로그인 승인에 성공했습니다.", "msg.userfront.login.verification_failed": "승인 처리에 실패했습니다: {{error}}", "msg.userfront.login_success.subtitle": "성공적으로 로그인되었습니다.", @@ -272,7 +310,8 @@ const Map koStrings = { "msg.userfront.reset.error.generic": "비밀번호 변경에 실패했습니다: {{error}}", "msg.userfront.reset.error.lowercase": "최소 1개 이상의 소문자를 포함해야 합니다.", "msg.userfront.reset.error.min_length": "비밀번호는 최소 {{count}}자 이상이어야 합니다.", - "msg.userfront.reset.error.min_types": "비밀번호는 영문 대/소문자/숫자/특수문자 중 {{count}}가지 이상 포함해야 합니다.", + "msg.userfront.reset.error.min_types": + "비밀번호는 영문 대/소문자/숫자/특수문자 중 {{count}}가지 이상 포함해야 합니다.", "msg.userfront.reset.error.mismatch": "비밀번호가 일치하지 않습니다.", "msg.userfront.reset.error.number": "최소 1개 이상의 숫자를 포함해야 합니다.", "msg.userfront.reset.error.symbol": "최소 1개 이상의 특수문자를 포함해야 합니다.", @@ -292,7 +331,8 @@ const Map koStrings = { "msg.userfront.sections.audit_subtitle": "Baron 로그인 기준의 최근 접근 기록입니다.", "msg.userfront.settings.disabled": "현재 계정 설정 화면은 준비 중입니다.", "msg.userfront.signup.agreement.title": "서비스 이용을 위해\\\\n약관에 동의해주세요", - "msg.userfront.signup.auth.affiliate_notice": "가족사 회원의 경우 반드시 회사 공식 이메일을 입력해주세요.", + "msg.userfront.signup.auth.affiliate_notice": + "가족사 회원의 경우 반드시 회사 공식 이메일을 입력해주세요.", "msg.userfront.signup.auth.title": "본인 확인을 위해\\\\n인증을 진행해주세요", "msg.userfront.signup.email.code_mismatch": "인증코드가 일치하지 않습니다.", "msg.userfront.signup.email.duplicate": "이미 가입된 이메일입니다.", @@ -302,7 +342,8 @@ const Map koStrings = { "msg.userfront.signup.email.verify_failed": "인증 실패: {{error}}", "msg.userfront.signup.failed": "가입 실패: {{error}}", "msg.userfront.signup.password.length_required": "비밀번호는 최소 12자 이상이어야 합니다.", - "msg.userfront.signup.password.lowercase_required": "소문자가 최소 1개 이상 포함되어야 합니다.", + "msg.userfront.signup.password.lowercase_required": + "소문자가 최소 1개 이상 포함되어야 합니다.", "msg.userfront.signup.password.mismatch": "비밀번호가 일치하지 않습니다.", "msg.userfront.signup.password.number_required": "숫자가 최소 1개 이상 포함되어야 합니다.", "msg.userfront.signup.password.rule.lowercase": "소문자", @@ -313,7 +354,8 @@ const Map koStrings = { "msg.userfront.signup.password.rule.uppercase": "대문자", "msg.userfront.signup.password.symbol_required": "특수문자가 최소 1개 이상 포함되어야 합니다.", "msg.userfront.signup.password.title": "마지막으로\\\\n비밀번호를 설정해주세요", - "msg.userfront.signup.password.uppercase_required": "대문자가 최소 1개 이상 포함되어야 합니다.", + "msg.userfront.signup.password.uppercase_required": + "대문자가 최소 1개 이상 포함되어야 합니다.", "msg.userfront.signup.phone.code_mismatch": "인증코드가 일치하지 않습니다.", "msg.userfront.signup.phone.send_failed": "발송 실패: {{error}}", "msg.userfront.signup.phone.verified": "✅ 휴대폰 인증 완료", @@ -326,14 +368,17 @@ const Map koStrings = { "msg.userfront.signup.policy.summary": "보안 정책: {{rules}}", "msg.userfront.signup.policy.symbol": "특수문자", "msg.userfront.signup.policy.uppercase": "대문자", - "msg.userfront.signup.privacy_full": "\\n개인정보 수집 및 이용 동의\\n\\n바론서비스 개인정보처리방침\\n\\n제1조 (목적)\\n바론컨설턴트(이하 \\\"회사\\\")는 바론서비스(이하 \\\"서비스\\\")를 이용하는 고객(이하 \\\"이용자\\\")의 개인정보를 보호하고, 「개인정보 보호법」에 따라 책임과 의무를 다하기 위해 본 개인정보처리방침을 마련했습니다. 본 방침은 이용자가 제공한 개인정보가 어떻게 수집, 이용, 보관, 보호되는지를 설명합니다.\\n제2조 (개인정보의 처리목적)\\n회사는 다음의 목적을 위해 개인정보를 처리합니다. 처리하고 있는 개인정보는 다음의 목적 이외의 용도로는 이용되지 않으며, 이용 목적이 변경되는 경우에는 「개인정보 보호법」 제18조에 따라 별도의 동의를 받는 등 필요한 조치를 이행할 예정입니다.\\n- 본인확인: 회원가입 및 관리를 위한 본인 확인, 전화 또는 이메일을 통한 연락\\n- 서비스 제공: 각종 통보 및 서비스 제공을 위한 업무 처리\\n- 제품소개서 다운로드: 설명자료 전달\\n- 상담 및 데모 신청: 상담 제공 및 데모 제공, 계약 처리자 정보 수집\\n- 행사 참가 신청: 참석 안내 및 세미나/설명회/교육 제공\\n- 보안가이드 제공: 안내자료 전달\\n- 기술지원 문의: 서비스 사용 지원\\n- 서비스 개선 의견 접수: 서비스 품질 개선\\n- 마케팅 활동: 동의한 고객에 한해 뉴스레터 및 매거진 발송\\n제3조 (개인정보의 처리 및 보유 기간)\\n① 회사는 법령에 따른 개인정보 보유 및 이용기간 또는 정보주체로부터 개인정보를 수집 시 동의받은 개인정보 보유 및 이용기간 내에서 개인정보를 처리 및 보유합니다.\\n② 각각의 개인정보 처리 및 보유 기간은 다음과 같습니다:\\n- 회원정보: 회원가입일부터 회원탈퇴 후 1년까지\\n- 홍보, 상담, 계약용 개인정보: 2년\\n제4조 (개인정보의 제3자 제공)\\n① 회사는 정보주체의 개인정보를 제2조에서 명시한 범위 내에서만 처리하며, 정보 주체의 동의, 법률의 특별한 규정 등 「개인정보 보호법」 제17조 및 제18조에 해당하는 경우에만 개인정보를 제3자에게 제공합니다.\\n② 회사는 다음과 같이 개인정보를 제3자에게 제공하고 있습니다:\\n- 제공받는 자: 수사기관 및 유관기관, 피신고업체\\n- 이용 목적: 개인정보 침해 민원 처리\\n- 제공하는 개인정보 항목: 성명, 연락처, 이메일\\n- 보유 및 이용기간: 법령에서 정한 보존기간 및 제공목적 달성 시 파기\\n제5조 (개인정보 처리 위탁)\\n① 회사는 개인정보 처리업무를 외부 업체에 위탁하지 않으며, 자체적으로 처리하고 있습니다.\\n② 회사가 특정 업무(예: 채용 업무)를 외부 업체에 위탁할 경우, 개인정보 처리방침 시행 전 회사 홈페이지에서 공지한 후 정보주체의 동의를 받은 후 위탁합니다.\\n제6조 (정보주체의 권리·의무 및 행사 방법)\\n① 정보주체는 회사에 대해 언제든지 개인정보 열람, 정정, 삭제, 처리정지 요구 등의 권리를 행사할 수 있습니다.\\n② 권리 행사는 다음과 같은 방법으로 할 수 있습니다:\\n- 서면: 회사 주소로 서면 제출\\n- 전자우편: 회사 이메일로 요청\\n- 모사전송(FAX): 회사 FAX로 요청\\n③ 권리 행사는 정보주체의 법정대리인이나 위임을 받은 자를 통해 대리로도 가능합니다. 이 경우 “개인정보 처리 방법에 관한 고시” 별지 제11호 서식에 따른 위임장을 제출해야 합니다.\\n④ 개인정보 열람 및 처리정지 요구는 「개인정보 보호법」 제35조 제4항, 제37조 제2항에 따라 제한될 수 있습니다.\\n⑤ 개인정보의 정정 및 삭제 요구는 다른 법령에 따라 수집된 개인정보인 경우 제한될 수 있습니다.\\n⑥ 회사는 권리 행사를 요청한 자가 본인 또는 정당한 대리인인지를 확인합니다.\\n제7조 (처리하는 개인정보의 항목)\\n회사는 다음의 개인정보 항목을 처리합니다:\\n- 수집 항목:\\n- 필수 항목: 성명, 휴대전화번호, 이메일\\n- 선택 항목: 회사전화번호, 문의사항\\n- 수집 방법:\\n- 홈페이지, 전화, 이메일을 통해 수집\\n제8조 (개인정보의 파기)\\n① 회사는 개인정보 보유 기간의 경과, 처리 목적 달성 등 개인정보가 불필요하게 되었을 때 지체 없이 해당 개인정보를 파기합니다.\\n② 정보주체로부터 동의받은 개인정보 보유 기간이 경과하거나 처리 목적이 달성된 경우에도 다른 법령에 따라 개인정보를 계속 보존해야 할 경우에는, 해당 개인정보를 별도의 데이터베이스(DB)로 옮기거나 보관 장소를 달리하여 보존합니다.\\n③ 개인정보 파기의 절차 및 방법은 다음과 같습니다:\\n- 파기 절차: 회사는 파기 사유가 발생한 개인정보를 선정하고, 개인정보 보호책임자의 승인을 받아 개인정보를 파기합니다.\\n- 파기 방법: 전자적 파일 형태로 기록된 개인정보는 복구할 수 없도록 기술적 방법을 사용해 삭제하며, 종이 문서에 기록된 개인정보는 분쇄기로 분쇄하거나 소각하여 파기합니다.\\n제9조 (개인정보의 안전성 확보 조치)\\n회사는 개인정보의 안전성 확보를 위해 다음과 같은 조치를 취합니다:\\n- 관리적 조치: 내부관리계획 수립·시행, 정기적 직원 교육\\n- 기술적 조치: 개인정보처리시스템 접근 권한 관리, 접근통제시스템 설치, 고유식별정보 암호화, 보안 프로그램 설치\\n- 물리적 조치: 전산실 및 자료보관실 접근 통제\\n제10조 (개인정보 자동 수집 장치의 설치·운영 및 거부에 관한 사항)\\n회사는 쿠키(Cookie)를 사용하지 않습니다. 쿠키는 이용자의 이용 정보를 저장하고 수시로 불러오는 작은 파일로, 바론서비스에서는 쿠키를 사용하지 않습니다.\\n제11조 (개인정보 보호책임자)\\n회사는 개인정보 처리에 관한 업무를 총괄하여 책임지고, 개인정보 처리와 관련된 정보주체의 불만처리 및 피해구제를 위해 개인정보 보호책임자를 지정하고 있습니다.\\n개인정보 보호책임자:\\n- 성명: 염승호\\n- 직책: 수석연구원\\n- 연락처: 02-2141-7448\\n- 팩스번호: 02-2141-7599\\n- 이메일: b23008@baroncs.co.kr\\n제12조 (개인정보 열람청구)\\n정보주체는 「개인정보 보호법」 제35조에 따른 개인정보 열람 청구를 아래 부서에 할 수 있습니다. 회사는 정보주체의 개인정보 열람청구가 신속하게 처리되도록 노력하겠습니다.\\n개인정보 열람청구 접수·처리 부서:\\n- 부서명: 총괄기획실\\n- 담당자: 권혁진\\n- 연락처: 02-2141-7465\\n- 팩스번호: 02-2141-7599\\n- 이메일: baroncs@baroncs.co.kr\\n제13조 (권익침해 구제방법)\\n정보주체는 개인정보 침해로 인한 구제를 위해 개인정보분쟁조정위원회, 한국인터넷진흥원 개인정보해신고센터 등에 분쟁 해결이나 상담을 신청할 수 있습니다.\\n- 개인정보분쟁조정위원회: (국번없이) 1833-6972 (www.kopico.go.kr)\\n- 개인정보침해신고센터: (국번없이) 118 (privacy.kisa.or.kr)\\n- 대검찰청: (국번없이) 1301 (www.spo.go.kr)\\n- 경찰청: (국번없이) 182 (www.police.go.kr)\\n제14조 (개인정보 처리방침의 변경)\\n본 개인정보처리방침은 법령, 정책 또는 보안 기술의 변경에 따라 내용의 추가, 삭제 및 수정이 있을 시, 개정 최소 7일 전에 홈페이지를 통해 사전 공지합니다.\\n\\n부칙\\n제1조 (시행일자)\\n이 개인정보처리방침은 2024년 10월 1일부터 시행됩니다.\\n제2조 (개정 및 고지의 의무)\\n회사는 개인정보처리방침을 변경하는 경우, 변경사항을 시행일자 7일 전부터 서비스 내 공지사항 페이지를 통해 고지할 것입니다. 다만, 이용자의 권리나 의무에 중대한 변경이 발생하는 경우에는 시행일자 30일 전부터 고지합니다.\\n제3조 (유효성)\\n본 개인정보처리방침의 일부 조항이 법적 또는 기타 사유로 인해 무효화되거나 시행할 수 없는 경우, 나머지 조항들은 계속해서 유효합니다. 무효화된 조항은 관련 법령에 부합하는 방식으로 수정되어 효력을 지속합니다.\\n제4조 (변경 통지의 방법)\\n회사는 개인정보처리방침의 변경 시, 다음의 방법으로 이용자에게 고지합니다:\\n- 서비스 초기화면 또는 팝업 공지\\n- 이메일 발송\\n- 회사 홈페이지 공지사항\\n제5조 (비회원의 개인정보 보호)\\n회사는 비회원의 개인정보도 회원과 동일한 수준으로 보호합니다. 비회원이 개인정보 제공을 거부할 경우 일부 서비스 이용에 제한이 있을 수 있습니다.\\n제6조 (14세 미만 아동의 개인정보 보호)\\n회사는 14세 미만 아동의 개인정보를 수집하지 않습니다. 만일 14세 미만 아동의 개인정보가 수집된 경우, 법정 대리인의 동의를 받아야 하며, 법정 대리인의 동의 없이 수집된 경우 이를 지체 없이 파기합니다.\\n제7조 (개인정보의 국외 이전)\\n회사는 이용자의 개인정보를 국외로 이전하지 않으며, 향후 필요한 경우, 사전에 이용자의 동의를 받습니다.\\n제8조 (기타)\\n본 방침에 명시되지 않은 사항은 회사의 내부 방침과 관련 법령에 따릅니다.\\n", + "msg.userfront.signup.privacy_full": + "\\n개인정보 수집 및 이용 동의\\n\\n바론서비스 개인정보처리방침\\n\\n제1조 (목적)\\n바론컨설턴트(이하 \\\"회사\\\")는 바론서비스(이하 \\\"서비스\\\")를 이용하는 고객(이하 \\\"이용자\\\")의 개인정보를 보호하고, 「개인정보 보호법」에 따라 책임과 의무를 다하기 위해 본 개인정보처리방침을 마련했습니다. 본 방침은 이용자가 제공한 개인정보가 어떻게 수집, 이용, 보관, 보호되는지를 설명합니다.\\n제2조 (개인정보의 처리목적)\\n회사는 다음의 목적을 위해 개인정보를 처리합니다. 처리하고 있는 개인정보는 다음의 목적 이외의 용도로는 이용되지 않으며, 이용 목적이 변경되는 경우에는 「개인정보 보호법」 제18조에 따라 별도의 동의를 받는 등 필요한 조치를 이행할 예정입니다.\\n- 본인확인: 회원가입 및 관리를 위한 본인 확인, 전화 또는 이메일을 통한 연락\\n- 서비스 제공: 각종 통보 및 서비스 제공을 위한 업무 처리\\n- 제품소개서 다운로드: 설명자료 전달\\n- 상담 및 데모 신청: 상담 제공 및 데모 제공, 계약 처리자 정보 수집\\n- 행사 참가 신청: 참석 안내 및 세미나/설명회/교육 제공\\n- 보안가이드 제공: 안내자료 전달\\n- 기술지원 문의: 서비스 사용 지원\\n- 서비스 개선 의견 접수: 서비스 품질 개선\\n- 마케팅 활동: 동의한 고객에 한해 뉴스레터 및 매거진 발송\\n제3조 (개인정보의 처리 및 보유 기간)\\n① 회사는 법령에 따른 개인정보 보유 및 이용기간 또는 정보주체로부터 개인정보를 수집 시 동의받은 개인정보 보유 및 이용기간 내에서 개인정보를 처리 및 보유합니다.\\n② 각각의 개인정보 처리 및 보유 기간은 다음과 같습니다:\\n- 회원정보: 회원가입일부터 회원탈퇴 후 1년까지\\n- 홍보, 상담, 계약용 개인정보: 2년\\n제4조 (개인정보의 제3자 제공)\\n① 회사는 정보주체의 개인정보를 제2조에서 명시한 범위 내에서만 처리하며, 정보 주체의 동의, 법률의 특별한 규정 등 「개인정보 보호법」 제17조 및 제18조에 해당하는 경우에만 개인정보를 제3자에게 제공합니다.\\n② 회사는 다음과 같이 개인정보를 제3자에게 제공하고 있습니다:\\n- 제공받는 자: 수사기관 및 유관기관, 피신고업체\\n- 이용 목적: 개인정보 침해 민원 처리\\n- 제공하는 개인정보 항목: 성명, 연락처, 이메일\\n- 보유 및 이용기간: 법령에서 정한 보존기간 및 제공목적 달성 시 파기\\n제5조 (개인정보 처리 위탁)\\n① 회사는 개인정보 처리업무를 외부 업체에 위탁하지 않으며, 자체적으로 처리하고 있습니다.\\n② 회사가 특정 업무(예: 채용 업무)를 외부 업체에 위탁할 경우, 개인정보 처리방침 시행 전 회사 홈페이지에서 공지한 후 정보주체의 동의를 받은 후 위탁합니다.\\n제6조 (정보주체의 권리·의무 및 행사 방법)\\n① 정보주체는 회사에 대해 언제든지 개인정보 열람, 정정, 삭제, 처리정지 요구 등의 권리를 행사할 수 있습니다.\\n② 권리 행사는 다음과 같은 방법으로 할 수 있습니다:\\n- 서면: 회사 주소로 서면 제출\\n- 전자우편: 회사 이메일로 요청\\n- 모사전송(FAX): 회사 FAX로 요청\\n③ 권리 행사는 정보주체의 법정대리인이나 위임을 받은 자를 통해 대리로도 가능합니다. 이 경우 “개인정보 처리 방법에 관한 고시” 별지 제11호 서식에 따른 위임장을 제출해야 합니다.\\n④ 개인정보 열람 및 처리정지 요구는 「개인정보 보호법」 제35조 제4항, 제37조 제2항에 따라 제한될 수 있습니다.\\n⑤ 개인정보의 정정 및 삭제 요구는 다른 법령에 따라 수집된 개인정보인 경우 제한될 수 있습니다.\\n⑥ 회사는 권리 행사를 요청한 자가 본인 또는 정당한 대리인인지를 확인합니다.\\n제7조 (처리하는 개인정보의 항목)\\n회사는 다음의 개인정보 항목을 처리합니다:\\n- 수집 항목:\\n- 필수 항목: 성명, 휴대전화번호, 이메일\\n- 선택 항목: 회사전화번호, 문의사항\\n- 수집 방법:\\n- 홈페이지, 전화, 이메일을 통해 수집\\n제8조 (개인정보의 파기)\\n① 회사는 개인정보 보유 기간의 경과, 처리 목적 달성 등 개인정보가 불필요하게 되었을 때 지체 없이 해당 개인정보를 파기합니다.\\n② 정보주체로부터 동의받은 개인정보 보유 기간이 경과하거나 처리 목적이 달성된 경우에도 다른 법령에 따라 개인정보를 계속 보존해야 할 경우에는, 해당 개인정보를 별도의 데이터베이스(DB)로 옮기거나 보관 장소를 달리하여 보존합니다.\\n③ 개인정보 파기의 절차 및 방법은 다음과 같습니다:\\n- 파기 절차: 회사는 파기 사유가 발생한 개인정보를 선정하고, 개인정보 보호책임자의 승인을 받아 개인정보를 파기합니다.\\n- 파기 방법: 전자적 파일 형태로 기록된 개인정보는 복구할 수 없도록 기술적 방법을 사용해 삭제하며, 종이 문서에 기록된 개인정보는 분쇄기로 분쇄하거나 소각하여 파기합니다.\\n제9조 (개인정보의 안전성 확보 조치)\\n회사는 개인정보의 안전성 확보를 위해 다음과 같은 조치를 취합니다:\\n- 관리적 조치: 내부관리계획 수립·시행, 정기적 직원 교육\\n- 기술적 조치: 개인정보처리시스템 접근 권한 관리, 접근통제시스템 설치, 고유식별정보 암호화, 보안 프로그램 설치\\n- 물리적 조치: 전산실 및 자료보관실 접근 통제\\n제10조 (개인정보 자동 수집 장치의 설치·운영 및 거부에 관한 사항)\\n회사는 쿠키(Cookie)를 사용하지 않습니다. 쿠키는 이용자의 이용 정보를 저장하고 수시로 불러오는 작은 파일로, 바론서비스에서는 쿠키를 사용하지 않습니다.\\n제11조 (개인정보 보호책임자)\\n회사는 개인정보 처리에 관한 업무를 총괄하여 책임지고, 개인정보 처리와 관련된 정보주체의 불만처리 및 피해구제를 위해 개인정보 보호책임자를 지정하고 있습니다.\\n개인정보 보호책임자:\\n- 성명: 염승호\\n- 직책: 수석연구원\\n- 연락처: 02-2141-7448\\n- 팩스번호: 02-2141-7599\\n- 이메일: b23008@baroncs.co.kr\\n제12조 (개인정보 열람청구)\\n정보주체는 「개인정보 보호법」 제35조에 따른 개인정보 열람 청구를 아래 부서에 할 수 있습니다. 회사는 정보주체의 개인정보 열람청구가 신속하게 처리되도록 노력하겠습니다.\\n개인정보 열람청구 접수·처리 부서:\\n- 부서명: 총괄기획실\\n- 담당자: 권혁진\\n- 연락처: 02-2141-7465\\n- 팩스번호: 02-2141-7599\\n- 이메일: baroncs@baroncs.co.kr\\n제13조 (권익침해 구제방법)\\n정보주체는 개인정보 침해로 인한 구제를 위해 개인정보분쟁조정위원회, 한국인터넷진흥원 개인정보해신고센터 등에 분쟁 해결이나 상담을 신청할 수 있습니다.\\n- 개인정보분쟁조정위원회: (국번없이) 1833-6972 (www.kopico.go.kr)\\n- 개인정보침해신고센터: (국번없이) 118 (privacy.kisa.or.kr)\\n- 대검찰청: (국번없이) 1301 (www.spo.go.kr)\\n- 경찰청: (국번없이) 182 (www.police.go.kr)\\n제14조 (개인정보 처리방침의 변경)\\n본 개인정보처리방침은 법령, 정책 또는 보안 기술의 변경에 따라 내용의 추가, 삭제 및 수정이 있을 시, 개정 최소 7일 전에 홈페이지를 통해 사전 공지합니다.\\n\\n부칙\\n제1조 (시행일자)\\n이 개인정보처리방침은 2024년 10월 1일부터 시행됩니다.\\n제2조 (개정 및 고지의 의무)\\n회사는 개인정보처리방침을 변경하는 경우, 변경사항을 시행일자 7일 전부터 서비스 내 공지사항 페이지를 통해 고지할 것입니다. 다만, 이용자의 권리나 의무에 중대한 변경이 발생하는 경우에는 시행일자 30일 전부터 고지합니다.\\n제3조 (유효성)\\n본 개인정보처리방침의 일부 조항이 법적 또는 기타 사유로 인해 무효화되거나 시행할 수 없는 경우, 나머지 조항들은 계속해서 유효합니다. 무효화된 조항은 관련 법령에 부합하는 방식으로 수정되어 효력을 지속합니다.\\n제4조 (변경 통지의 방법)\\n회사는 개인정보처리방침의 변경 시, 다음의 방법으로 이용자에게 고지합니다:\\n- 서비스 초기화면 또는 팝업 공지\\n- 이메일 발송\\n- 회사 홈페이지 공지사항\\n제5조 (비회원의 개인정보 보호)\\n회사는 비회원의 개인정보도 회원과 동일한 수준으로 보호합니다. 비회원이 개인정보 제공을 거부할 경우 일부 서비스 이용에 제한이 있을 수 있습니다.\\n제6조 (14세 미만 아동의 개인정보 보호)\\n회사는 14세 미만 아동의 개인정보를 수집하지 않습니다. 만일 14세 미만 아동의 개인정보가 수집된 경우, 법정 대리인의 동의를 받아야 하며, 법정 대리인의 동의 없이 수집된 경우 이를 지체 없이 파기합니다.\\n제7조 (개인정보의 국외 이전)\\n회사는 이용자의 개인정보를 국외로 이전하지 않으며, 향후 필요한 경우, 사전에 이용자의 동의를 받습니다.\\n제8조 (기타)\\n본 방침에 명시되지 않은 사항은 회사의 내부 방침과 관련 법령에 따릅니다.\\n", "msg.userfront.signup.profile.affiliate_hint": "가족사 이메일 사용 시 자동으로 선택됩니다.", "msg.userfront.signup.profile.title": "회원님의\\\\n소속 정보를 알려주세요", "msg.userfront.signup.success.body": "성공적으로 가입되었습니다.", "msg.userfront.signup.success.title": "회원가입 완료", - "msg.userfront.signup.tos_full": "\\n바론 소프트웨어 이용약관\\n\\n제1장 총칙\\n제1조 (목적)\\n이 약관은 바론컨설턴트(이하 \\\"회사\\\"라 합니다)가 제공하는 바론소프트웨어(이하 \\\"서비스\\\"라 합니다)를 이용함에 있어 회사와 이용자 간의 권리, 의무 및 책임사항과 기타 필요한 사항을 정하는 것을 목적으로 합니다.\\n제2조 (용어의 정의)\\n① 본 약관에서 사용하는 용어의 정의는 다음과 같습니다:\\n- “서비스”란 회사가 제공하는 소프트웨어 및 관련 제반 서비스를 의미합니다.\\n- “이용자”란 회사의 서비스에 접속하여 본 약관에 따라 회사가 제공하는 서비스를 이용하는 회원 및 비회원을 말합니다.\\n- “회원”이란 본 약관에 동의하고 회사와 이용계약을 체결한 자를 의미합니다.\\n- “비회원”이란 회원가입을 하지 않고 회사가 제공하는 일부 서비스를 이용하는 자를 말합니다.\\n제3조 (약관의 효력 및 변경)\\n① 본 약관은 이용자가 본 약관에 동의하고, 회사가 이에 대한 승낙을 완료함으로써 효력이 발생합니다. ② 회사는 필요한 경우 본 약관을 변경할 수 있으며, 변경된 약관은 서비스 화면에 공지된 후 효력이 발생합니다.\\n제4조 (약관 외 준칙)\\n본 약관에 명시되지 않은 사항에 대해서는 대한민국의 관련 법령과 상관습에 따릅니다.\\n제2장 서비스 이용계약\\n제5조 (이용계약의 성립)\\n이용계약은 이용자가 약관의 내용에 동의하고, 회사가 제공하는 소정의 회원가입 신청서를 작성하여 가입을 완료한 후, 회사가 이를 승인함으로써 성립합니다.\\n제6조 (이용계약의 유보와 거절)\\n① 회사는 다음 각 호에 해당하는 경우 이용계약의 성립을 유보하거나 거절할 수 있습니다: - 신청서의 내용이 허위로 판명된 경우 - 서비스 제공이 기술적으로 어려운 경우\\n제7조 (계약사항의 변경)\\n회원은 개인정보 관리 메뉴를 통해 언제든지 자신의 정보를 열람하고 수정할 수 있습니다. 회원의 정보가 변경된 경우 즉시 수정해야 하며, 수정하지 않아 발생하는 문제의 책임은 회원에게 있습니다.\\n제3장 개인정보 보호\\n제8조 (개인정보 보호의 원칙)\\n① 회원의 개인정보는 관련 법령에 따라 보호됩니다. ② 회사는 개인정보 보호와 관련된 세부 사항을 별도로 마련한 개인정보처리방침에 따라 관리하며, 이용자는 언제든지 해당 방침을 통해 개인정보 관리에 대한 자세한 내용을 확인할 수 있습니다.\\n제9조 (개인정보처리방침 준수)\\n① 회사는 개인정보 보호와 관련된 구체적인 사항을 개인정보처리방침에 따라 관리합니다. ② 개인정보의 수집, 이용, 제공, 보관, 보호 등에 관한 사항은 회사의 개인정보처리방침을 따르며, 이용자는 회사 웹사이트에서 이를 확인할 수 있습니다. ③ 회사는 개인정보 보호를 위해 최선을 다하며, 관련 법령에 따라 이용자의 개인정보를 안전하게 관리합니다.\\n제10조 (14세 미만 아동의 개인정보 보호)\\n① 회사는 14세 미만 아동의 개인정보를 수집할 경우, 반드시 법정대리인의 동의를 받아야 합니다. ② 법정대리인은 아동의 개인정보 열람, 수정, 삭제를 요청할 수 있으며, 회사는 이를 신속하게 처리합니다. ③ 14세 미만 아동의 개인정보 보호와 관련된 구체적인 사항은 개인정보처리방침에 명시되어 있습니다.\\n제4장 서비스 제공 및 이용\\n제11조 (서비스 제공)\\n회사는 회원의 이용 신청을 승인한 때부터 서비스를 개시합니다. 서비스 이용은 연중무휴 24시간을 원칙으로 합니다.\\n제12조 (서비스의 변경 및 중단)\\n회사는 서비스 제공이 어려운 경우 사전 고지 후 서비스를 변경하거나 중단할 수 있습니다.\\n제5장 정보 제공 및 광고\\n제13조 (정보 제공 및 광고)\\n① 회사는 서비스 이용 중 필요하다고 인정되는 정보 및 광고를 제공할 수 있습니다. ② 회원은 원치 않는 정보를 수신 거부할 수 있습니다.\\n제6장 게시물 관리\\n제14조 (게시물의 관리)\\n회사는 회원이 게시한 내용이 불법적이거나 약관에 위배될 경우 이를 삭제할 수 있습니다.\\n제15조 (게시물의 저작권)\\n게시물의 저작권은 회원에게 있으며, 회사는 이를 서비스 홍보 및 개선 목적으로 사용할 수 있습니다.\\n제7장 계약 해지 및 이용 제한\\n제16조 (계약 해지)\\n회원은 언제든지 계약 해지를 요청할 수 있으며, 회사는 신속하게 처리합니다.\\n제17조 (이용 제한)\\n회사는 회원이 약관을 위반할 경우 서비스 이용을 제한할 수 있습니다.\\n제8장 손해 배상 및 면책 조항\\n제18조 (손해 배상)\\n회사는 무료로 제공되는 서비스와 관련하여 회원에게 발생한 손해에 대해 책임을 지지 않습니다.\\n제19조 (면책 조항)\\n회사는 천재지변 등 불가항력적인 사유로 인해 서비스를 제공하지 못하는 경우 책임을 지지 않습니다.\\n제9장 유료 서비스\\n20조 (유료 서비스의 이용)\\n① 회사는 회원에게 특정 서비스에 대해 유료로 제공할 수 있습니다. ② 유료 서비스의 이용 요금, 결제 방식, 환불 절차 등에 대한 상세 내용은 서비스 안내 페이지와 결제 화면에 명시합니다. ③ 유료 서비스 이용 요금은 회사가 정한 결제 방식에 따라 결제됩니다. 회원은 신용카드, 계좌이체, 휴대전화 결제 등 회사가 제공하는 다양한 결제 방식을 통해 요금을 납부할 수 있습니다. ④ 유료 서비스의 이용 요금은 선불 결제를 원칙으로 하며, 이용 기간 중 서비스 중지 및 해지 시 남은 이용 기간에 대한 환불은 회사의 환불 정책에 따라 처리됩니다. ⑤ 회사는 회원의 유료 서비스 이용과 관련하여 발생한 문제에 대해 최선을 다해 해결하도록 노력합니다. 다만, 회사의 고의 또는 중대한 과실이 없는 한 회원이 유료 서비스 이용 중 입은 손해에 대해서는 책임을 지지 않습니다.\\n제21조(환불 정책)\\n① 회원은 결제 후 7일 이내에 서비스 이용을 시작하지 않은 경우, 요금 전액을 환불받을 수 있습니다. ② 유료 서비스 이용 중 부득이한 사유로 서비스가 중지된 경우, 회사는 이용하지 않은 부분에 대해 환불 절차를 밟습니다. ③ 회원의 귀책사유로 인해 서비스 이용이 중지된 경우, 환불이 불가능합니다. ④ 환불은 회원이 지정한 계좌로 환불 절차를 거치며, 환불 요청 후 7일 이내에 처리됩니다.\\n제22조 (유료 서비스의 중지 및 해지)\\n① 회원이 유료 서비스를 해지하고자 하는 경우, 회사의 고객 지원 센터에 해지 신청을 해야 합니다. ② 회사는 회원이 약관을 위반하거나 부정한 방법으로 유료 서비스를 이용한 경우, 유료 서비스 이용을 즉시 중지하고 계약을 해지할 수 있습니다.\\n제10장 양도 금지\\n제23조 (양도 금지)\\n회원은 서비스 이용권한, 기타 이용계약상의 지위를 제3자에게 양도, 증여할 수 없으며, 이를 담보로 제공할 수 없습니다.\\n제11장 관할 법원\\n제24조 (분쟁 해결)\\n서비스 이용과 관련하여 분쟁이 발생한 경우, 회사와 회원은 성실히 협의하여 해결합니다.\\n제25조 (관할 법원)\\n본 약관에 따른 분쟁은 서울중앙지방법원을 관할 법원으로 합니다.\\n부칙\\n본 약관은 2024년 10월 1일부터 시행됩니다.\\n", + "msg.userfront.signup.tos_full": + "\\n바론 소프트웨어 이용약관\\n\\n제1장 총칙\\n제1조 (목적)\\n이 약관은 바론컨설턴트(이하 \\\"회사\\\"라 합니다)가 제공하는 바론소프트웨어(이하 \\\"서비스\\\"라 합니다)를 이용함에 있어 회사와 이용자 간의 권리, 의무 및 책임사항과 기타 필요한 사항을 정하는 것을 목적으로 합니다.\\n제2조 (용어의 정의)\\n① 본 약관에서 사용하는 용어의 정의는 다음과 같습니다:\\n- “서비스”란 회사가 제공하는 소프트웨어 및 관련 제반 서비스를 의미합니다.\\n- “이용자”란 회사의 서비스에 접속하여 본 약관에 따라 회사가 제공하는 서비스를 이용하는 회원 및 비회원을 말합니다.\\n- “회원”이란 본 약관에 동의하고 회사와 이용계약을 체결한 자를 의미합니다.\\n- “비회원”이란 회원가입을 하지 않고 회사가 제공하는 일부 서비스를 이용하는 자를 말합니다.\\n제3조 (약관의 효력 및 변경)\\n① 본 약관은 이용자가 본 약관에 동의하고, 회사가 이에 대한 승낙을 완료함으로써 효력이 발생합니다. ② 회사는 필요한 경우 본 약관을 변경할 수 있으며, 변경된 약관은 서비스 화면에 공지된 후 효력이 발생합니다.\\n제4조 (약관 외 준칙)\\n본 약관에 명시되지 않은 사항에 대해서는 대한민국의 관련 법령과 상관습에 따릅니다.\\n제2장 서비스 이용계약\\n제5조 (이용계약의 성립)\\n이용계약은 이용자가 약관의 내용에 동의하고, 회사가 제공하는 소정의 회원가입 신청서를 작성하여 가입을 완료한 후, 회사가 이를 승인함으로써 성립합니다.\\n제6조 (이용계약의 유보와 거절)\\n① 회사는 다음 각 호에 해당하는 경우 이용계약의 성립을 유보하거나 거절할 수 있습니다: - 신청서의 내용이 허위로 판명된 경우 - 서비스 제공이 기술적으로 어려운 경우\\n제7조 (계약사항의 변경)\\n회원은 개인정보 관리 메뉴를 통해 언제든지 자신의 정보를 열람하고 수정할 수 있습니다. 회원의 정보가 변경된 경우 즉시 수정해야 하며, 수정하지 않아 발생하는 문제의 책임은 회원에게 있습니다.\\n제3장 개인정보 보호\\n제8조 (개인정보 보호의 원칙)\\n① 회원의 개인정보는 관련 법령에 따라 보호됩니다. ② 회사는 개인정보 보호와 관련된 세부 사항을 별도로 마련한 개인정보처리방침에 따라 관리하며, 이용자는 언제든지 해당 방침을 통해 개인정보 관리에 대한 자세한 내용을 확인할 수 있습니다.\\n제9조 (개인정보처리방침 준수)\\n① 회사는 개인정보 보호와 관련된 구체적인 사항을 개인정보처리방침에 따라 관리합니다. ② 개인정보의 수집, 이용, 제공, 보관, 보호 등에 관한 사항은 회사의 개인정보처리방침을 따르며, 이용자는 회사 웹사이트에서 이를 확인할 수 있습니다. ③ 회사는 개인정보 보호를 위해 최선을 다하며, 관련 법령에 따라 이용자의 개인정보를 안전하게 관리합니다.\\n제10조 (14세 미만 아동의 개인정보 보호)\\n① 회사는 14세 미만 아동의 개인정보를 수집할 경우, 반드시 법정대리인의 동의를 받아야 합니다. ② 법정대리인은 아동의 개인정보 열람, 수정, 삭제를 요청할 수 있으며, 회사는 이를 신속하게 처리합니다. ③ 14세 미만 아동의 개인정보 보호와 관련된 구체적인 사항은 개인정보처리방침에 명시되어 있습니다.\\n제4장 서비스 제공 및 이용\\n제11조 (서비스 제공)\\n회사는 회원의 이용 신청을 승인한 때부터 서비스를 개시합니다. 서비스 이용은 연중무휴 24시간을 원칙으로 합니다.\\n제12조 (서비스의 변경 및 중단)\\n회사는 서비스 제공이 어려운 경우 사전 고지 후 서비스를 변경하거나 중단할 수 있습니다.\\n제5장 정보 제공 및 광고\\n제13조 (정보 제공 및 광고)\\n① 회사는 서비스 이용 중 필요하다고 인정되는 정보 및 광고를 제공할 수 있습니다. ② 회원은 원치 않는 정보를 수신 거부할 수 있습니다.\\n제6장 게시물 관리\\n제14조 (게시물의 관리)\\n회사는 회원이 게시한 내용이 불법적이거나 약관에 위배될 경우 이를 삭제할 수 있습니다.\\n제15조 (게시물의 저작권)\\n게시물의 저작권은 회원에게 있으며, 회사는 이를 서비스 홍보 및 개선 목적으로 사용할 수 있습니다.\\n제7장 계약 해지 및 이용 제한\\n제16조 (계약 해지)\\n회원은 언제든지 계약 해지를 요청할 수 있으며, 회사는 신속하게 처리합니다.\\n제17조 (이용 제한)\\n회사는 회원이 약관을 위반할 경우 서비스 이용을 제한할 수 있습니다.\\n제8장 손해 배상 및 면책 조항\\n제18조 (손해 배상)\\n회사는 무료로 제공되는 서비스와 관련하여 회원에게 발생한 손해에 대해 책임을 지지 않습니다.\\n제19조 (면책 조항)\\n회사는 천재지변 등 불가항력적인 사유로 인해 서비스를 제공하지 못하는 경우 책임을 지지 않습니다.\\n제9장 유료 서비스\\n20조 (유료 서비스의 이용)\\n① 회사는 회원에게 특정 서비스에 대해 유료로 제공할 수 있습니다. ② 유료 서비스의 이용 요금, 결제 방식, 환불 절차 등에 대한 상세 내용은 서비스 안내 페이지와 결제 화면에 명시합니다. ③ 유료 서비스 이용 요금은 회사가 정한 결제 방식에 따라 결제됩니다. 회원은 신용카드, 계좌이체, 휴대전화 결제 등 회사가 제공하는 다양한 결제 방식을 통해 요금을 납부할 수 있습니다. ④ 유료 서비스의 이용 요금은 선불 결제를 원칙으로 하며, 이용 기간 중 서비스 중지 및 해지 시 남은 이용 기간에 대한 환불은 회사의 환불 정책에 따라 처리됩니다. ⑤ 회사는 회원의 유료 서비스 이용과 관련하여 발생한 문제에 대해 최선을 다해 해결하도록 노력합니다. 다만, 회사의 고의 또는 중대한 과실이 없는 한 회원이 유료 서비스 이용 중 입은 손해에 대해서는 책임을 지지 않습니다.\\n제21조(환불 정책)\\n① 회원은 결제 후 7일 이내에 서비스 이용을 시작하지 않은 경우, 요금 전액을 환불받을 수 있습니다. ② 유료 서비스 이용 중 부득이한 사유로 서비스가 중지된 경우, 회사는 이용하지 않은 부분에 대해 환불 절차를 밟습니다. ③ 회원의 귀책사유로 인해 서비스 이용이 중지된 경우, 환불이 불가능합니다. ④ 환불은 회원이 지정한 계좌로 환불 절차를 거치며, 환불 요청 후 7일 이내에 처리됩니다.\\n제22조 (유료 서비스의 중지 및 해지)\\n① 회원이 유료 서비스를 해지하고자 하는 경우, 회사의 고객 지원 센터에 해지 신청을 해야 합니다. ② 회사는 회원이 약관을 위반하거나 부정한 방법으로 유료 서비스를 이용한 경우, 유료 서비스 이용을 즉시 중지하고 계약을 해지할 수 있습니다.\\n제10장 양도 금지\\n제23조 (양도 금지)\\n회원은 서비스 이용권한, 기타 이용계약상의 지위를 제3자에게 양도, 증여할 수 없으며, 이를 담보로 제공할 수 없습니다.\\n제11장 관할 법원\\n제24조 (분쟁 해결)\\n서비스 이용과 관련하여 분쟁이 발생한 경우, 회사와 회원은 성실히 협의하여 해결합니다.\\n제25조 (관할 법원)\\n본 약관에 따른 분쟁은 서울중앙지방법원을 관할 법원으로 합니다.\\n부칙\\n본 약관은 2024년 10월 1일부터 시행됩니다.\\n", "ui.admin.api_keys.create.name_label": "서비스 또는 목적 식별 이름", - "ui.admin.api_keys.create.name_placeholder": "예: Jenkins-CI, Grafana-Dashboard", + "ui.admin.api_keys.create.name_placeholder": + "예: Jenkins-CI, Grafana-Dashboard", "ui.admin.api_keys.create.section_name": "키 이름 지정", "ui.admin.api_keys.create.section_scopes": "권한 범위(Scopes) 선택", "ui.admin.api_keys.create.submit": "API 키 발급하기", @@ -415,7 +460,8 @@ const Map koStrings = { "ui.admin.tenants.create.breadcrumb.action": "Create", "ui.admin.tenants.create.breadcrumb.section": "Tenants", "ui.admin.tenants.create.form.description": "Description", - "ui.admin.tenants.create.form.domains_label": "Allowed Domains (Comma separated)", + "ui.admin.tenants.create.form.domains_label": + "Allowed Domains (Comma separated)", "ui.admin.tenants.create.form.domains_placeholder": "example.com, example.kr", "ui.admin.tenants.create.form.name": "Tenant name", "ui.admin.tenants.create.form.slug": "Slug", @@ -591,7 +637,8 @@ const Map koStrings = { "ui.dev.clients.details.endpoints.title": "OIDC 엔드포인트", "ui.dev.clients.details.redirect.callback_label": "인증 콜백 URL", "ui.dev.clients.details.redirect.label": "Redirect URIs", - "ui.dev.clients.details.redirect.placeholder": "https://your-app.com/callback, http://localhost:3000/auth/callback", + "ui.dev.clients.details.redirect.placeholder": + "https://your-app.com/callback, http://localhost:3000/auth/callback", "ui.dev.clients.details.redirect.save": "Redirect URIs 저장", "ui.dev.clients.details.redirect.title": "리디렉션 URI 설정", "ui.dev.clients.details.secret.hide": "비밀키 숨기기", @@ -607,15 +654,18 @@ const Map koStrings = { "ui.dev.clients.general.footer.client_id": "Client ID", "ui.dev.clients.general.footer.created_on": "Created On", "ui.dev.clients.general.identity.description": "Description", - "ui.dev.clients.general.identity.description_placeholder": "앱에 대한 간단한 설명을 입력하세요.", + "ui.dev.clients.general.identity.description_placeholder": + "앱에 대한 간단한 설명을 입력하세요.", "ui.dev.clients.general.identity.logo": "App Logo URL", - "ui.dev.clients.general.identity.logo_placeholder": "https://example.com/logo.png", + "ui.dev.clients.general.identity.logo_placeholder": + "https://example.com/logo.png", "ui.dev.clients.general.identity.logo_preview": "Logo Preview", "ui.dev.clients.general.identity.name": "앱 이름", "ui.dev.clients.general.identity.name_placeholder": "My Awesome Application", "ui.dev.clients.general.identity.title": "Application Identity", "ui.dev.clients.general.redirect.label": "Redirect URIs", - "ui.dev.clients.general.redirect.placeholder": "https://app.example.com/callback, http://localhost:3000/auth/callback (콤마로 구분)", + "ui.dev.clients.general.redirect.placeholder": + "https://app.example.com/callback, http://localhost:3000/auth/callback (콤마로 구분)", "ui.dev.clients.general.save": "설정 저장", "ui.dev.clients.general.scopes.add": "Scope 추가", "ui.dev.clients.general.scopes.description_placeholder": "권한에 대한 설명", @@ -872,7 +922,8 @@ const Map enStrings = { "msg.admin.scope_admin": "Scoped to /admin", "msg.admin.session_ttl": "Session TTL: 15m admin", "msg.admin.tenant_headers": "Tenant-aware headers", - "msg.admin.tenants.create.form.domains_help": "Users with these email domains will be automatically assigned to this tenant.", + "msg.admin.tenants.create.form.domains_help": + "Users with these email domains will be automatically assigned to this tenant.", "msg.admin.tenants.create.memo.body": "Body", "msg.admin.tenants.create.memo.subtitle": "Subtitle", "msg.admin.tenants.create.profile.subtitle": "Subtitle", @@ -882,9 +933,11 @@ const Map enStrings = { "msg.admin.tenants.fetch_error": "Fetch Error", "msg.admin.tenants.members.empty": "Empty", "msg.admin.tenants.registry.count": "Count", - "msg.admin.tenants.schema.empty": "No custom fields defined. Click \\\"Add Field\\\" to begin.", + "msg.admin.tenants.schema.empty": + "No custom fields defined. Click \\\"Add Field\\\" to begin.", "msg.admin.tenants.schema.missing_id": "Tenant ID missing", - "msg.admin.tenants.schema.subtitle": "Define custom attributes for users in this tenant.", + "msg.admin.tenants.schema.subtitle": + "Define custom attributes for users in this tenant.", "msg.admin.tenants.schema.update_error": "Failed to update schema", "msg.admin.tenants.schema.update_success": "Schema updated successfully", "msg.admin.tenants.sub.empty": "Empty", @@ -917,7 +970,8 @@ const Map enStrings = { "msg.dev.clients.consents.empty": "No consents found.", "msg.dev.clients.consents.load_error": "Error loading consents: {{error}}", "msg.dev.clients.consents.loading": "Loading consents...", - "msg.dev.clients.consents.showing": "Showing {{from}} to {{to}} of {{total}} users", + "msg.dev.clients.consents.showing": + "Showing {{from}} to {{to}} of {{total}} users", "msg.dev.clients.consents.subtitle": "Subtitle", "msg.dev.clients.copy_client_id": "Copy Client Id", "msg.dev.clients.details.copy_client_id": "Client ID copied.", @@ -947,8 +1001,10 @@ const Map enStrings = { "msg.dev.clients.general.security.confidential_help": "Confidential Help", "msg.dev.clients.general.security.public_help": "Public Help", "msg.dev.clients.general.security.subtitle": "Subtitle", - "msg.dev.clients.help.docs_body": "Includes PKCE, client_secret_basic, redirect URI validation tips.", - "msg.dev.clients.help.subtitle": "Developer guides for Confidential/Public clients, redirect URIs, and auth methods.", + "msg.dev.clients.help.docs_body": + "Includes PKCE, client_secret_basic, redirect URI validation tips.", + "msg.dev.clients.help.subtitle": + "Developer guides for Confidential/Public clients, redirect URIs, and auth methods.", "msg.dev.clients.load_error": "Error loading clients: {{error}}", "msg.dev.clients.loading": "Loading clients...", "msg.dev.clients.registry.description": "Description", @@ -1132,12 +1188,14 @@ const Map enStrings = { "msg.userfront.signup.policy.summary": "Summary", "msg.userfront.signup.policy.symbol": "Symbol", "msg.userfront.signup.policy.uppercase": "Uppercase", - "msg.userfront.signup.privacy_full": "\\n개인정보 수집 및 이용 동의\\n\\n바론서비스 개인정보처리방침\\n\\n제1조 (목적)\\n바론컨설턴트(이하 \\\"회사\\\")는 바론서비스(이하 \\\"서비스\\\")를 이용하는 고객(이하 \\\"이용자\\\")의 개인정보를 보호하고, 「개인정보 보호법」에 따라 책임과 의무를 다하기 위해 본 개인정보처리방침을 마련했습니다. 본 방침은 이용자가 제공한 개인정보가 어떻게 수집, 이용, 보관, 보호되는지를 설명합니다.\\n제2조 (개인정보의 처리목적)\\n회사는 다음의 목적을 위해 개인정보를 처리합니다. 처리하고 있는 개인정보는 다음의 목적 이외의 용도로는 이용되지 않으며, 이용 목적이 변경되는 경우에는 「개인정보 보호법」 제18조에 따라 별도의 동의를 받는 등 필요한 조치를 이행할 예정입니다.\\n- 본인확인: 회원가입 및 관리를 위한 본인 확인, 전화 또는 이메일을 통한 연락\\n- 서비스 제공: 각종 통보 및 서비스 제공을 위한 업무 처리\\n- 제품소개서 다운로드: 설명자료 전달\\n- 상담 및 데모 신청: 상담 제공 및 데모 제공, 계약 처리자 정보 수집\\n- 행사 참가 신청: 참석 안내 및 세미나/설명회/교육 제공\\n- 보안가이드 제공: 안내자료 전달\\n- 기술지원 문의: 서비스 사용 지원\\n- 서비스 개선 의견 접수: 서비스 품질 개선\\n- 마케팅 활동: 동의한 고객에 한해 뉴스레터 및 매거진 발송\\n제3조 (개인정보의 처리 및 보유 기간)\\n① 회사는 법령에 따른 개인정보 보유 및 이용기간 또는 정보주체로부터 개인정보를 수집 시 동의받은 개인정보 보유 및 이용기간 내에서 개인정보를 처리 및 보유합니다.\\n② 각각의 개인정보 처리 및 보유 기간은 다음과 같습니다:\\n- 회원정보: 회원가입일부터 회원탈퇴 후 1년까지\\n- 홍보, 상담, 계약용 개인정보: 2년\\n제4조 (개인정보의 제3자 제공)\\n① 회사는 정보주체의 개인정보를 제2조에서 명시한 범위 내에서만 처리하며, 정보 주체의 동의, 법률의 특별한 규정 등 「개인정보 보호법」 제17조 및 제18조에 해당하는 경우에만 개인정보를 제3자에게 제공합니다.\\n② 회사는 다음과 같이 개인정보를 제3자에게 제공하고 있습니다:\\n- 제공받는 자: 수사기관 및 유관기관, 피신고업체\\n- 이용 목적: 개인정보 침해 민원 처리\\n- 제공하는 개인정보 항목: 성명, 연락처, 이메일\\n- 보유 및 이용기간: 법령에서 정한 보존기간 및 제공목적 달성 시 파기\\n제5조 (개인정보 처리 위탁)\\n① 회사는 개인정보 처리업무를 외부 업체에 위탁하지 않으며, 자체적으로 처리하고 있습니다.\\n② 회사가 특정 업무(예: 채용 업무)를 외부 업체에 위탁할 경우, 개인정보 처리방침 시행 전 회사 홈페이지에서 공지한 후 정보주체의 동의를 받은 후 위탁합니다.\\n제6조 (정보주체의 권리·의무 및 행사 방법)\\n① 정보주체는 회사에 대해 언제든지 개인정보 열람, 정정, 삭제, 처리정지 요구 등의 권리를 행사할 수 있습니다.\\n② 권리 행사는 다음과 같은 방법으로 할 수 있습니다:\\n- 서면: 회사 주소로 서면 제출\\n- 전자우편: 회사 이메일로 요청\\n- 모사전송(FAX): 회사 FAX로 요청\\n③ 권리 행사는 정보주체의 법정대리인이나 위임을 받은 자를 통해 대리로도 가능합니다. 이 경우 “개인정보 처리 방법에 관한 고시” 별지 제11호 서식에 따른 위임장을 제출해야 합니다.\\n④ 개인정보 열람 및 처리정지 요구는 「개인정보 보호법」 제35조 제4항, 제37조 제2항에 따라 제한될 수 있습니다.\\n⑤ 개인정보의 정정 및 삭제 요구는 다른 법령에 따라 수집된 개인정보인 경우 제한될 수 있습니다.\\n⑥ 회사는 권리 행사를 요청한 자가 본인 또는 정당한 대리인인지를 확인합니다.\\n제7조 (처리하는 개인정보의 항목)\\n회사는 다음의 개인정보 항목을 처리합니다:\\n- 수집 항목:\\n- 필수 항목: 성명, 휴대전화번호, 이메일\\n- 선택 항목: 회사전화번호, 문의사항\\n- 수집 방법:\\n- 홈페이지, 전화, 이메일을 통해 수집\\n제8조 (개인정보의 파기)\\n① 회사는 개인정보 보유 기간의 경과, 처리 목적 달성 등 개인정보가 불필요하게 되었을 때 지체 없이 해당 개인정보를 파기합니다.\\n② 정보주체로부터 동의받은 개인정보 보유 기간이 경과하거나 처리 목적이 달성된 경우에도 다른 법령에 따라 개인정보를 계속 보존해야 할 경우에는, 해당 개인정보를 별도의 데이터베이스(DB)로 옮기거나 보관 장소를 달리하여 보존합니다.\\n③ 개인정보 파기의 절차 및 방법은 다음과 같습니다:\\n- 파기 절차: 회사는 파기 사유가 발생한 개인정보를 선정하고, 개인정보 보호책임자의 승인을 받아 개인정보를 파기합니다.\\n- 파기 방법: 전자적 파일 형태로 기록된 개인정보는 복구할 수 없도록 기술적 방법을 사용해 삭제하며, 종이 문서에 기록된 개인정보는 분쇄기로 분쇄하거나 소각하여 파기합니다.\\n제9조 (개인정보의 안전성 확보 조치)\\n회사는 개인정보의 안전성 확보를 위해 다음과 같은 조치를 취합니다:\\n- 관리적 조치: 내부관리계획 수립·시행, 정기적 직원 교육\\n- 기술적 조치: 개인정보처리시스템 접근 권한 관리, 접근통제시스템 설치, 고유식별정보 암호화, 보안 프로그램 설치\\n- 물리적 조치: 전산실 및 자료보관실 접근 통제\\n제10조 (개인정보 자동 수집 장치의 설치·운영 및 거부에 관한 사항)\\n회사는 쿠키(Cookie)를 사용하지 않습니다. 쿠키는 이용자의 이용 정보를 저장하고 수시로 불러오는 작은 파일로, 바론서비스에서는 쿠키를 사용하지 않습니다.\\n제11조 (개인정보 보호책임자)\\n회사는 개인정보 처리에 관한 업무를 총괄하여 책임지고, 개인정보 처리와 관련된 정보주체의 불만처리 및 피해구제를 위해 개인정보 보호책임자를 지정하고 있습니다.\\n개인정보 보호책임자:\\n- 성명: 염승호\\n- 직책: 수석연구원\\n- 연락처: 02-2141-7448\\n- 팩스번호: 02-2141-7599\\n- 이메일: b23008@baroncs.co.kr\\n제12조 (개인정보 열람청구)\\n정보주체는 「개인정보 보호법」 제35조에 따른 개인정보 열람 청구를 아래 부서에 할 수 있습니다. 회사는 정보주체의 개인정보 열람청구가 신속하게 처리되도록 노력하겠습니다.\\n개인정보 열람청구 접수·처리 부서:\\n- 부서명: 총괄기획실\\n- 담당자: 권혁진\\n- 연락처: 02-2141-7465\\n- 팩스번호: 02-2141-7599\\n- 이메일: baroncs@baroncs.co.kr\\n제13조 (권익침해 구제방법)\\n정보주체는 개인정보 침해로 인한 구제를 위해 개인정보분쟁조정위원회, 한국인터넷진흥원 개인정보해신고센터 등에 분쟁 해결이나 상담을 신청할 수 있습니다.\\n- 개인정보분쟁조정위원회: (국번없이) 1833-6972 (www.kopico.go.kr)\\n- 개인정보침해신고센터: (국번없이) 118 (privacy.kisa.or.kr)\\n- 대검찰청: (국번없이) 1301 (www.spo.go.kr)\\n- 경찰청: (국번없이) 182 (www.police.go.kr)\\n제14조 (개인정보 처리방침의 변경)\\n본 개인정보처리방침은 법령, 정책 또는 보안 기술의 변경에 따라 내용의 추가, 삭제 및 수정이 있을 시, 개정 최소 7일 전에 홈페이지를 통해 사전 공지합니다.\\n\\n부칙\\n제1조 (시행일자)\\n이 개인정보처리방침은 2024년 10월 1일부터 시행됩니다.\\n제2조 (개정 및 고지의 의무)\\n회사는 개인정보처리방침을 변경하는 경우, 변경사항을 시행일자 7일 전부터 서비스 내 공지사항 페이지를 통해 고지할 것입니다. 다만, 이용자의 권리나 의무에 중대한 변경이 발생하는 경우에는 시행일자 30일 전부터 고지합니다.\\n제3조 (유효성)\\n본 개인정보처리방침의 일부 조항이 법적 또는 기타 사유로 인해 무효화되거나 시행할 수 없는 경우, 나머지 조항들은 계속해서 유효합니다. 무효화된 조항은 관련 법령에 부합하는 방식으로 수정되어 효력을 지속합니다.\\n제4조 (변경 통지의 방법)\\n회사는 개인정보처리방침의 변경 시, 다음의 방법으로 이용자에게 고지합니다:\\n- 서비스 초기화면 또는 팝업 공지\\n- 이메일 발송\\n- 회사 홈페이지 공지사항\\n제5조 (비회원의 개인정보 보호)\\n회사는 비회원의 개인정보도 회원과 동일한 수준으로 보호합니다. 비회원이 개인정보 제공을 거부할 경우 일부 서비스 이용에 제한이 있을 수 있습니다.\\n제6조 (14세 미만 아동의 개인정보 보호)\\n회사는 14세 미만 아동의 개인정보를 수집하지 않습니다. 만일 14세 미만 아동의 개인정보가 수집된 경우, 법정 대리인의 동의를 받아야 하며, 법정 대리인의 동의 없이 수집된 경우 이를 지체 없이 파기합니다.\\n제7조 (개인정보의 국외 이전)\\n회사는 이용자의 개인정보를 국외로 이전하지 않으며, 향후 필요한 경우, 사전에 이용자의 동의를 받습니다.\\n제8조 (기타)\\n본 방침에 명시되지 않은 사항은 회사의 내부 방침과 관련 법령에 따릅니다.\\n", + "msg.userfront.signup.privacy_full": + "\\n개인정보 수집 및 이용 동의\\n\\n바론서비스 개인정보처리방침\\n\\n제1조 (목적)\\n바론컨설턴트(이하 \\\"회사\\\")는 바론서비스(이하 \\\"서비스\\\")를 이용하는 고객(이하 \\\"이용자\\\")의 개인정보를 보호하고, 「개인정보 보호법」에 따라 책임과 의무를 다하기 위해 본 개인정보처리방침을 마련했습니다. 본 방침은 이용자가 제공한 개인정보가 어떻게 수집, 이용, 보관, 보호되는지를 설명합니다.\\n제2조 (개인정보의 처리목적)\\n회사는 다음의 목적을 위해 개인정보를 처리합니다. 처리하고 있는 개인정보는 다음의 목적 이외의 용도로는 이용되지 않으며, 이용 목적이 변경되는 경우에는 「개인정보 보호법」 제18조에 따라 별도의 동의를 받는 등 필요한 조치를 이행할 예정입니다.\\n- 본인확인: 회원가입 및 관리를 위한 본인 확인, 전화 또는 이메일을 통한 연락\\n- 서비스 제공: 각종 통보 및 서비스 제공을 위한 업무 처리\\n- 제품소개서 다운로드: 설명자료 전달\\n- 상담 및 데모 신청: 상담 제공 및 데모 제공, 계약 처리자 정보 수집\\n- 행사 참가 신청: 참석 안내 및 세미나/설명회/교육 제공\\n- 보안가이드 제공: 안내자료 전달\\n- 기술지원 문의: 서비스 사용 지원\\n- 서비스 개선 의견 접수: 서비스 품질 개선\\n- 마케팅 활동: 동의한 고객에 한해 뉴스레터 및 매거진 발송\\n제3조 (개인정보의 처리 및 보유 기간)\\n① 회사는 법령에 따른 개인정보 보유 및 이용기간 또는 정보주체로부터 개인정보를 수집 시 동의받은 개인정보 보유 및 이용기간 내에서 개인정보를 처리 및 보유합니다.\\n② 각각의 개인정보 처리 및 보유 기간은 다음과 같습니다:\\n- 회원정보: 회원가입일부터 회원탈퇴 후 1년까지\\n- 홍보, 상담, 계약용 개인정보: 2년\\n제4조 (개인정보의 제3자 제공)\\n① 회사는 정보주체의 개인정보를 제2조에서 명시한 범위 내에서만 처리하며, 정보 주체의 동의, 법률의 특별한 규정 등 「개인정보 보호법」 제17조 및 제18조에 해당하는 경우에만 개인정보를 제3자에게 제공합니다.\\n② 회사는 다음과 같이 개인정보를 제3자에게 제공하고 있습니다:\\n- 제공받는 자: 수사기관 및 유관기관, 피신고업체\\n- 이용 목적: 개인정보 침해 민원 처리\\n- 제공하는 개인정보 항목: 성명, 연락처, 이메일\\n- 보유 및 이용기간: 법령에서 정한 보존기간 및 제공목적 달성 시 파기\\n제5조 (개인정보 처리 위탁)\\n① 회사는 개인정보 처리업무를 외부 업체에 위탁하지 않으며, 자체적으로 처리하고 있습니다.\\n② 회사가 특정 업무(예: 채용 업무)를 외부 업체에 위탁할 경우, 개인정보 처리방침 시행 전 회사 홈페이지에서 공지한 후 정보주체의 동의를 받은 후 위탁합니다.\\n제6조 (정보주체의 권리·의무 및 행사 방법)\\n① 정보주체는 회사에 대해 언제든지 개인정보 열람, 정정, 삭제, 처리정지 요구 등의 권리를 행사할 수 있습니다.\\n② 권리 행사는 다음과 같은 방법으로 할 수 있습니다:\\n- 서면: 회사 주소로 서면 제출\\n- 전자우편: 회사 이메일로 요청\\n- 모사전송(FAX): 회사 FAX로 요청\\n③ 권리 행사는 정보주체의 법정대리인이나 위임을 받은 자를 통해 대리로도 가능합니다. 이 경우 “개인정보 처리 방법에 관한 고시” 별지 제11호 서식에 따른 위임장을 제출해야 합니다.\\n④ 개인정보 열람 및 처리정지 요구는 「개인정보 보호법」 제35조 제4항, 제37조 제2항에 따라 제한될 수 있습니다.\\n⑤ 개인정보의 정정 및 삭제 요구는 다른 법령에 따라 수집된 개인정보인 경우 제한될 수 있습니다.\\n⑥ 회사는 권리 행사를 요청한 자가 본인 또는 정당한 대리인인지를 확인합니다.\\n제7조 (처리하는 개인정보의 항목)\\n회사는 다음의 개인정보 항목을 처리합니다:\\n- 수집 항목:\\n- 필수 항목: 성명, 휴대전화번호, 이메일\\n- 선택 항목: 회사전화번호, 문의사항\\n- 수집 방법:\\n- 홈페이지, 전화, 이메일을 통해 수집\\n제8조 (개인정보의 파기)\\n① 회사는 개인정보 보유 기간의 경과, 처리 목적 달성 등 개인정보가 불필요하게 되었을 때 지체 없이 해당 개인정보를 파기합니다.\\n② 정보주체로부터 동의받은 개인정보 보유 기간이 경과하거나 처리 목적이 달성된 경우에도 다른 법령에 따라 개인정보를 계속 보존해야 할 경우에는, 해당 개인정보를 별도의 데이터베이스(DB)로 옮기거나 보관 장소를 달리하여 보존합니다.\\n③ 개인정보 파기의 절차 및 방법은 다음과 같습니다:\\n- 파기 절차: 회사는 파기 사유가 발생한 개인정보를 선정하고, 개인정보 보호책임자의 승인을 받아 개인정보를 파기합니다.\\n- 파기 방법: 전자적 파일 형태로 기록된 개인정보는 복구할 수 없도록 기술적 방법을 사용해 삭제하며, 종이 문서에 기록된 개인정보는 분쇄기로 분쇄하거나 소각하여 파기합니다.\\n제9조 (개인정보의 안전성 확보 조치)\\n회사는 개인정보의 안전성 확보를 위해 다음과 같은 조치를 취합니다:\\n- 관리적 조치: 내부관리계획 수립·시행, 정기적 직원 교육\\n- 기술적 조치: 개인정보처리시스템 접근 권한 관리, 접근통제시스템 설치, 고유식별정보 암호화, 보안 프로그램 설치\\n- 물리적 조치: 전산실 및 자료보관실 접근 통제\\n제10조 (개인정보 자동 수집 장치의 설치·운영 및 거부에 관한 사항)\\n회사는 쿠키(Cookie)를 사용하지 않습니다. 쿠키는 이용자의 이용 정보를 저장하고 수시로 불러오는 작은 파일로, 바론서비스에서는 쿠키를 사용하지 않습니다.\\n제11조 (개인정보 보호책임자)\\n회사는 개인정보 처리에 관한 업무를 총괄하여 책임지고, 개인정보 처리와 관련된 정보주체의 불만처리 및 피해구제를 위해 개인정보 보호책임자를 지정하고 있습니다.\\n개인정보 보호책임자:\\n- 성명: 염승호\\n- 직책: 수석연구원\\n- 연락처: 02-2141-7448\\n- 팩스번호: 02-2141-7599\\n- 이메일: b23008@baroncs.co.kr\\n제12조 (개인정보 열람청구)\\n정보주체는 「개인정보 보호법」 제35조에 따른 개인정보 열람 청구를 아래 부서에 할 수 있습니다. 회사는 정보주체의 개인정보 열람청구가 신속하게 처리되도록 노력하겠습니다.\\n개인정보 열람청구 접수·처리 부서:\\n- 부서명: 총괄기획실\\n- 담당자: 권혁진\\n- 연락처: 02-2141-7465\\n- 팩스번호: 02-2141-7599\\n- 이메일: baroncs@baroncs.co.kr\\n제13조 (권익침해 구제방법)\\n정보주체는 개인정보 침해로 인한 구제를 위해 개인정보분쟁조정위원회, 한국인터넷진흥원 개인정보해신고센터 등에 분쟁 해결이나 상담을 신청할 수 있습니다.\\n- 개인정보분쟁조정위원회: (국번없이) 1833-6972 (www.kopico.go.kr)\\n- 개인정보침해신고센터: (국번없이) 118 (privacy.kisa.or.kr)\\n- 대검찰청: (국번없이) 1301 (www.spo.go.kr)\\n- 경찰청: (국번없이) 182 (www.police.go.kr)\\n제14조 (개인정보 처리방침의 변경)\\n본 개인정보처리방침은 법령, 정책 또는 보안 기술의 변경에 따라 내용의 추가, 삭제 및 수정이 있을 시, 개정 최소 7일 전에 홈페이지를 통해 사전 공지합니다.\\n\\n부칙\\n제1조 (시행일자)\\n이 개인정보처리방침은 2024년 10월 1일부터 시행됩니다.\\n제2조 (개정 및 고지의 의무)\\n회사는 개인정보처리방침을 변경하는 경우, 변경사항을 시행일자 7일 전부터 서비스 내 공지사항 페이지를 통해 고지할 것입니다. 다만, 이용자의 권리나 의무에 중대한 변경이 발생하는 경우에는 시행일자 30일 전부터 고지합니다.\\n제3조 (유효성)\\n본 개인정보처리방침의 일부 조항이 법적 또는 기타 사유로 인해 무효화되거나 시행할 수 없는 경우, 나머지 조항들은 계속해서 유효합니다. 무효화된 조항은 관련 법령에 부합하는 방식으로 수정되어 효력을 지속합니다.\\n제4조 (변경 통지의 방법)\\n회사는 개인정보처리방침의 변경 시, 다음의 방법으로 이용자에게 고지합니다:\\n- 서비스 초기화면 또는 팝업 공지\\n- 이메일 발송\\n- 회사 홈페이지 공지사항\\n제5조 (비회원의 개인정보 보호)\\n회사는 비회원의 개인정보도 회원과 동일한 수준으로 보호합니다. 비회원이 개인정보 제공을 거부할 경우 일부 서비스 이용에 제한이 있을 수 있습니다.\\n제6조 (14세 미만 아동의 개인정보 보호)\\n회사는 14세 미만 아동의 개인정보를 수집하지 않습니다. 만일 14세 미만 아동의 개인정보가 수집된 경우, 법정 대리인의 동의를 받아야 하며, 법정 대리인의 동의 없이 수집된 경우 이를 지체 없이 파기합니다.\\n제7조 (개인정보의 국외 이전)\\n회사는 이용자의 개인정보를 국외로 이전하지 않으며, 향후 필요한 경우, 사전에 이용자의 동의를 받습니다.\\n제8조 (기타)\\n본 방침에 명시되지 않은 사항은 회사의 내부 방침과 관련 법령에 따릅니다.\\n", "msg.userfront.signup.profile.affiliate_hint": "Affiliate Hint", "msg.userfront.signup.profile.title": "Title", "msg.userfront.signup.success.body": "Body", "msg.userfront.signup.success.title": "Title", - "msg.userfront.signup.tos_full": "\\n바론 소프트웨어 이용약관\\n\\n제1장 총칙\\n제1조 (목적)\\n이 약관은 바론컨설턴트(이하 \\\"회사\\\"라 합니다)가 제공하는 바론소프트웨어(이하 \\\"서비스\\\"라 합니다)를 이용함에 있어 회사와 이용자 간의 권리, 의무 및 책임사항과 기타 필요한 사항을 정하는 것을 목적으로 합니다.\\n제2조 (용어의 정의)\\n① 본 약관에서 사용하는 용어의 정의는 다음과 같습니다:\\n- “서비스”란 회사가 제공하는 소프트웨어 및 관련 제반 서비스를 의미합니다.\\n- “이용자”란 회사의 서비스에 접속하여 본 약관에 따라 회사가 제공하는 서비스를 이용하는 회원 및 비회원을 말합니다.\\n- “회원”이란 본 약관에 동의하고 회사와 이용계약을 체결한 자를 의미합니다.\\n- “비회원”이란 회원가입을 하지 않고 회사가 제공하는 일부 서비스를 이용하는 자를 말합니다.\\n제3조 (약관의 효력 및 변경)\\n① 본 약관은 이용자가 본 약관에 동의하고, 회사가 이에 대한 승낙을 완료함으로써 효력이 발생합니다. ② 회사는 필요한 경우 본 약관을 변경할 수 있으며, 변경된 약관은 서비스 화면에 공지된 후 효력이 발생합니다.\\n제4조 (약관 외 준칙)\\n본 약관에 명시되지 않은 사항에 대해서는 대한민국의 관련 법령과 상관습에 따릅니다.\\n제2장 서비스 이용계약\\n제5조 (이용계약의 성립)\\n이용계약은 이용자가 약관의 내용에 동의하고, 회사가 제공하는 소정의 회원가입 신청서를 작성하여 가입을 완료한 후, 회사가 이를 승인함으로써 성립합니다.\\n제6조 (이용계약의 유보와 거절)\\n① 회사는 다음 각 호에 해당하는 경우 이용계약의 성립을 유보하거나 거절할 수 있습니다: - 신청서의 내용이 허위로 판명된 경우 - 서비스 제공이 기술적으로 어려운 경우\\n제7조 (계약사항의 변경)\\n회원은 개인정보 관리 메뉴를 통해 언제든지 자신의 정보를 열람하고 수정할 수 있습니다. 회원의 정보가 변경된 경우 즉시 수정해야 하며, 수정하지 않아 발생하는 문제의 책임은 회원에게 있습니다.\\n제3장 개인정보 보호\\n제8조 (개인정보 보호의 원칙)\\n① 회원의 개인정보는 관련 법령에 따라 보호됩니다. ② 회사는 개인정보 보호와 관련된 세부 사항을 별도로 마련한 개인정보처리방침에 따라 관리하며, 이용자는 언제든지 해당 방침을 통해 개인정보 관리에 대한 자세한 내용을 확인할 수 있습니다.\\n제9조 (개인정보처리방침 준수)\\n① 회사는 개인정보 보호와 관련된 구체적인 사항을 개인정보처리방침에 따라 관리합니다. ② 개인정보의 수집, 이용, 제공, 보관, 보호 등에 관한 사항은 회사의 개인정보처리방침을 따르며, 이용자는 회사 웹사이트에서 이를 확인할 수 있습니다. ③ 회사는 개인정보 보호를 위해 최선을 다하며, 관련 법령에 따라 이용자의 개인정보를 안전하게 관리합니다.\\n제10조 (14세 미만 아동의 개인정보 보호)\\n① 회사는 14세 미만 아동의 개인정보를 수집할 경우, 반드시 법정대리인의 동의를 받아야 합니다. ② 법정대리인은 아동의 개인정보 열람, 수정, 삭제를 요청할 수 있으며, 회사는 이를 신속하게 처리합니다. ③ 14세 미만 아동의 개인정보 보호와 관련된 구체적인 사항은 개인정보처리방침에 명시되어 있습니다.\\n제4장 서비스 제공 및 이용\\n제11조 (서비스 제공)\\n회사는 회원의 이용 신청을 승인한 때부터 서비스를 개시합니다. 서비스 이용은 연중무휴 24시간을 원칙으로 합니다.\\n제12조 (서비스의 변경 및 중단)\\n회사는 서비스 제공이 어려운 경우 사전 고지 후 서비스를 변경하거나 중단할 수 있습니다.\\n제5장 정보 제공 및 광고\\n제13조 (정보 제공 및 광고)\\n① 회사는 서비스 이용 중 필요하다고 인정되는 정보 및 광고를 제공할 수 있습니다. ② 회원은 원치 않는 정보를 수신 거부할 수 있습니다.\\n제6장 게시물 관리\\n제14조 (게시물의 관리)\\n회사는 회원이 게시한 내용이 불법적이거나 약관에 위배될 경우 이를 삭제할 수 있습니다.\\n제15조 (게시물의 저작권)\\n게시물의 저작권은 회원에게 있으며, 회사는 이를 서비스 홍보 및 개선 목적으로 사용할 수 있습니다.\\n제7장 계약 해지 및 이용 제한\\n제16조 (계약 해지)\\n회원은 언제든지 계약 해지를 요청할 수 있으며, 회사는 신속하게 처리합니다.\\n제17조 (이용 제한)\\n회사는 회원이 약관을 위반할 경우 서비스 이용을 제한할 수 있습니다.\\n제8장 손해 배상 및 면책 조항\\n제18조 (손해 배상)\\n회사는 무료로 제공되는 서비스와 관련하여 회원에게 발생한 손해에 대해 책임을 지지 않습니다.\\n제19조 (면책 조항)\\n회사는 천재지변 등 불가항력적인 사유로 인해 서비스를 제공하지 못하는 경우 책임을 지지 않습니다.\\n제9장 유료 서비스\\n20조 (유료 서비스의 이용)\\n① 회사는 회원에게 특정 서비스에 대해 유료로 제공할 수 있습니다. ② 유료 서비스의 이용 요금, 결제 방식, 환불 절차 등에 대한 상세 내용은 서비스 안내 페이지와 결제 화면에 명시합니다. ③ 유료 서비스 이용 요금은 회사가 정한 결제 방식에 따라 결제됩니다. 회원은 신용카드, 계좌이체, 휴대전화 결제 등 회사가 제공하는 다양한 결제 방식을 통해 요금을 납부할 수 있습니다. ④ 유료 서비스의 이용 요금은 선불 결제를 원칙으로 하며, 이용 기간 중 서비스 중지 및 해지 시 남은 이용 기간에 대한 환불은 회사의 환불 정책에 따라 처리됩니다. ⑤ 회사는 회원의 유료 서비스 이용과 관련하여 발생한 문제에 대해 최선을 다해 해결하도록 노력합니다. 다만, 회사의 고의 또는 중대한 과실이 없는 한 회원이 유료 서비스 이용 중 입은 손해에 대해서는 책임을 지지 않습니다.\\n제21조(환불 정책)\\n① 회원은 결제 후 7일 이내에 서비스 이용을 시작하지 않은 경우, 요금 전액을 환불받을 수 있습니다. ② 유료 서비스 이용 중 부득이한 사유로 서비스가 중지된 경우, 회사는 이용하지 않은 부분에 대해 환불 절차를 밟습니다. ③ 회원의 귀책사유로 인해 서비스 이용이 중지된 경우, 환불이 불가능합니다. ④ 환불은 회원이 지정한 계좌로 환불 절차를 거치며, 환불 요청 후 7일 이내에 처리됩니다.\\n제22조 (유료 서비스의 중지 및 해지)\\n① 회원이 유료 서비스를 해지하고자 하는 경우, 회사의 고객 지원 센터에 해지 신청을 해야 합니다. ② 회사는 회원이 약관을 위반하거나 부정한 방법으로 유료 서비스를 이용한 경우, 유료 서비스 이용을 즉시 중지하고 계약을 해지할 수 있습니다.\\n제10장 양도 금지\\n제23조 (양도 금지)\\n회원은 서비스 이용권한, 기타 이용계약상의 지위를 제3자에게 양도, 증여할 수 없으며, 이를 담보로 제공할 수 없습니다.\\n제11장 관할 법원\\n제24조 (분쟁 해결)\\n서비스 이용과 관련하여 분쟁이 발생한 경우, 회사와 회원은 성실히 협의하여 해결합니다.\\n제25조 (관할 법원)\\n본 약관에 따른 분쟁은 서울중앙지방법원을 관할 법원으로 합니다.\\n부칙\\n본 약관은 2024년 10월 1일부터 시행됩니다.\\n", + "msg.userfront.signup.tos_full": + "\\n바론 소프트웨어 이용약관\\n\\n제1장 총칙\\n제1조 (목적)\\n이 약관은 바론컨설턴트(이하 \\\"회사\\\"라 합니다)가 제공하는 바론소프트웨어(이하 \\\"서비스\\\"라 합니다)를 이용함에 있어 회사와 이용자 간의 권리, 의무 및 책임사항과 기타 필요한 사항을 정하는 것을 목적으로 합니다.\\n제2조 (용어의 정의)\\n① 본 약관에서 사용하는 용어의 정의는 다음과 같습니다:\\n- “서비스”란 회사가 제공하는 소프트웨어 및 관련 제반 서비스를 의미합니다.\\n- “이용자”란 회사의 서비스에 접속하여 본 약관에 따라 회사가 제공하는 서비스를 이용하는 회원 및 비회원을 말합니다.\\n- “회원”이란 본 약관에 동의하고 회사와 이용계약을 체결한 자를 의미합니다.\\n- “비회원”이란 회원가입을 하지 않고 회사가 제공하는 일부 서비스를 이용하는 자를 말합니다.\\n제3조 (약관의 효력 및 변경)\\n① 본 약관은 이용자가 본 약관에 동의하고, 회사가 이에 대한 승낙을 완료함으로써 효력이 발생합니다. ② 회사는 필요한 경우 본 약관을 변경할 수 있으며, 변경된 약관은 서비스 화면에 공지된 후 효력이 발생합니다.\\n제4조 (약관 외 준칙)\\n본 약관에 명시되지 않은 사항에 대해서는 대한민국의 관련 법령과 상관습에 따릅니다.\\n제2장 서비스 이용계약\\n제5조 (이용계약의 성립)\\n이용계약은 이용자가 약관의 내용에 동의하고, 회사가 제공하는 소정의 회원가입 신청서를 작성하여 가입을 완료한 후, 회사가 이를 승인함으로써 성립합니다.\\n제6조 (이용계약의 유보와 거절)\\n① 회사는 다음 각 호에 해당하는 경우 이용계약의 성립을 유보하거나 거절할 수 있습니다: - 신청서의 내용이 허위로 판명된 경우 - 서비스 제공이 기술적으로 어려운 경우\\n제7조 (계약사항의 변경)\\n회원은 개인정보 관리 메뉴를 통해 언제든지 자신의 정보를 열람하고 수정할 수 있습니다. 회원의 정보가 변경된 경우 즉시 수정해야 하며, 수정하지 않아 발생하는 문제의 책임은 회원에게 있습니다.\\n제3장 개인정보 보호\\n제8조 (개인정보 보호의 원칙)\\n① 회원의 개인정보는 관련 법령에 따라 보호됩니다. ② 회사는 개인정보 보호와 관련된 세부 사항을 별도로 마련한 개인정보처리방침에 따라 관리하며, 이용자는 언제든지 해당 방침을 통해 개인정보 관리에 대한 자세한 내용을 확인할 수 있습니다.\\n제9조 (개인정보처리방침 준수)\\n① 회사는 개인정보 보호와 관련된 구체적인 사항을 개인정보처리방침에 따라 관리합니다. ② 개인정보의 수집, 이용, 제공, 보관, 보호 등에 관한 사항은 회사의 개인정보처리방침을 따르며, 이용자는 회사 웹사이트에서 이를 확인할 수 있습니다. ③ 회사는 개인정보 보호를 위해 최선을 다하며, 관련 법령에 따라 이용자의 개인정보를 안전하게 관리합니다.\\n제10조 (14세 미만 아동의 개인정보 보호)\\n① 회사는 14세 미만 아동의 개인정보를 수집할 경우, 반드시 법정대리인의 동의를 받아야 합니다. ② 법정대리인은 아동의 개인정보 열람, 수정, 삭제를 요청할 수 있으며, 회사는 이를 신속하게 처리합니다. ③ 14세 미만 아동의 개인정보 보호와 관련된 구체적인 사항은 개인정보처리방침에 명시되어 있습니다.\\n제4장 서비스 제공 및 이용\\n제11조 (서비스 제공)\\n회사는 회원의 이용 신청을 승인한 때부터 서비스를 개시합니다. 서비스 이용은 연중무휴 24시간을 원칙으로 합니다.\\n제12조 (서비스의 변경 및 중단)\\n회사는 서비스 제공이 어려운 경우 사전 고지 후 서비스를 변경하거나 중단할 수 있습니다.\\n제5장 정보 제공 및 광고\\n제13조 (정보 제공 및 광고)\\n① 회사는 서비스 이용 중 필요하다고 인정되는 정보 및 광고를 제공할 수 있습니다. ② 회원은 원치 않는 정보를 수신 거부할 수 있습니다.\\n제6장 게시물 관리\\n제14조 (게시물의 관리)\\n회사는 회원이 게시한 내용이 불법적이거나 약관에 위배될 경우 이를 삭제할 수 있습니다.\\n제15조 (게시물의 저작권)\\n게시물의 저작권은 회원에게 있으며, 회사는 이를 서비스 홍보 및 개선 목적으로 사용할 수 있습니다.\\n제7장 계약 해지 및 이용 제한\\n제16조 (계약 해지)\\n회원은 언제든지 계약 해지를 요청할 수 있으며, 회사는 신속하게 처리합니다.\\n제17조 (이용 제한)\\n회사는 회원이 약관을 위반할 경우 서비스 이용을 제한할 수 있습니다.\\n제8장 손해 배상 및 면책 조항\\n제18조 (손해 배상)\\n회사는 무료로 제공되는 서비스와 관련하여 회원에게 발생한 손해에 대해 책임을 지지 않습니다.\\n제19조 (면책 조항)\\n회사는 천재지변 등 불가항력적인 사유로 인해 서비스를 제공하지 못하는 경우 책임을 지지 않습니다.\\n제9장 유료 서비스\\n20조 (유료 서비스의 이용)\\n① 회사는 회원에게 특정 서비스에 대해 유료로 제공할 수 있습니다. ② 유료 서비스의 이용 요금, 결제 방식, 환불 절차 등에 대한 상세 내용은 서비스 안내 페이지와 결제 화면에 명시합니다. ③ 유료 서비스 이용 요금은 회사가 정한 결제 방식에 따라 결제됩니다. 회원은 신용카드, 계좌이체, 휴대전화 결제 등 회사가 제공하는 다양한 결제 방식을 통해 요금을 납부할 수 있습니다. ④ 유료 서비스의 이용 요금은 선불 결제를 원칙으로 하며, 이용 기간 중 서비스 중지 및 해지 시 남은 이용 기간에 대한 환불은 회사의 환불 정책에 따라 처리됩니다. ⑤ 회사는 회원의 유료 서비스 이용과 관련하여 발생한 문제에 대해 최선을 다해 해결하도록 노력합니다. 다만, 회사의 고의 또는 중대한 과실이 없는 한 회원이 유료 서비스 이용 중 입은 손해에 대해서는 책임을 지지 않습니다.\\n제21조(환불 정책)\\n① 회원은 결제 후 7일 이내에 서비스 이용을 시작하지 않은 경우, 요금 전액을 환불받을 수 있습니다. ② 유료 서비스 이용 중 부득이한 사유로 서비스가 중지된 경우, 회사는 이용하지 않은 부분에 대해 환불 절차를 밟습니다. ③ 회원의 귀책사유로 인해 서비스 이용이 중지된 경우, 환불이 불가능합니다. ④ 환불은 회원이 지정한 계좌로 환불 절차를 거치며, 환불 요청 후 7일 이내에 처리됩니다.\\n제22조 (유료 서비스의 중지 및 해지)\\n① 회원이 유료 서비스를 해지하고자 하는 경우, 회사의 고객 지원 센터에 해지 신청을 해야 합니다. ② 회사는 회원이 약관을 위반하거나 부정한 방법으로 유료 서비스를 이용한 경우, 유료 서비스 이용을 즉시 중지하고 계약을 해지할 수 있습니다.\\n제10장 양도 금지\\n제23조 (양도 금지)\\n회원은 서비스 이용권한, 기타 이용계약상의 지위를 제3자에게 양도, 증여할 수 없으며, 이를 담보로 제공할 수 없습니다.\\n제11장 관할 법원\\n제24조 (분쟁 해결)\\n서비스 이용과 관련하여 분쟁이 발생한 경우, 회사와 회원은 성실히 협의하여 해결합니다.\\n제25조 (관할 법원)\\n본 약관에 따른 분쟁은 서울중앙지방법원을 관할 법원으로 합니다.\\n부칙\\n본 약관은 2024년 10월 1일부터 시행됩니다.\\n", "ui.admin.api_keys.create.name_label": "Name Label", "ui.admin.api_keys.create.name_placeholder": "Name Placeholder", "ui.admin.api_keys.create.section_name": "Section Name", @@ -1221,7 +1279,8 @@ const Map enStrings = { "ui.admin.tenants.create.breadcrumb.action": "Create", "ui.admin.tenants.create.breadcrumb.section": "Tenants", "ui.admin.tenants.create.form.description": "Description", - "ui.admin.tenants.create.form.domains_label": "Allowed Domains (Comma separated)", + "ui.admin.tenants.create.form.domains_label": + "Allowed Domains (Comma separated)", "ui.admin.tenants.create.form.domains_placeholder": "example.com, example.kr", "ui.admin.tenants.create.form.name": "Tenant name", "ui.admin.tenants.create.form.slug": "Slug", @@ -1397,7 +1456,8 @@ const Map enStrings = { "ui.dev.clients.details.endpoints.title": "Title", "ui.dev.clients.details.redirect.callback_label": "Callback Label", "ui.dev.clients.details.redirect.label": "Redirect URIs", - "ui.dev.clients.details.redirect.placeholder": "https://your-app.com/callback, http://localhost:3000/auth/callback", + "ui.dev.clients.details.redirect.placeholder": + "https://your-app.com/callback, http://localhost:3000/auth/callback", "ui.dev.clients.details.redirect.save": "Save", "ui.dev.clients.details.redirect.title": "Title", "ui.dev.clients.details.secret.hide": "Hide", @@ -1413,9 +1473,11 @@ const Map enStrings = { "ui.dev.clients.general.footer.client_id": "Client ID", "ui.dev.clients.general.footer.created_on": "Created On", "ui.dev.clients.general.identity.description": "Description", - "ui.dev.clients.general.identity.description_placeholder": "Description Placeholder", + "ui.dev.clients.general.identity.description_placeholder": + "Description Placeholder", "ui.dev.clients.general.identity.logo": "App Logo URL", - "ui.dev.clients.general.identity.logo_placeholder": "https://example.com/logo.png", + "ui.dev.clients.general.identity.logo_placeholder": + "https://example.com/logo.png", "ui.dev.clients.general.identity.logo_preview": "Logo Preview", "ui.dev.clients.general.identity.name": "Name", "ui.dev.clients.general.identity.name_placeholder": "My Awesome Application", @@ -1424,7 +1486,8 @@ const Map enStrings = { "ui.dev.clients.general.redirect.placeholder": "Placeholder", "ui.dev.clients.general.save": "Settings Save", "ui.dev.clients.general.scopes.add": "Scope Add", - "ui.dev.clients.general.scopes.description_placeholder": "Description Placeholder", + "ui.dev.clients.general.scopes.description_placeholder": + "Description Placeholder", "ui.dev.clients.general.scopes.name_placeholder": "e.g. profile", "ui.dev.clients.general.scopes.table.description": "Description", "ui.dev.clients.general.scopes.table.mandatory": "Mandatory", diff --git a/userfront/lib/main.dart b/userfront/lib/main.dart index 071f318f..8e86bc67 100644 --- a/userfront/lib/main.dart +++ b/userfront/lib/main.dart @@ -131,9 +131,11 @@ final _router = GoRouter( GoRoute( path: 'signin', builder: (context, state) { - final loginChallenge = state.uri.queryParameters['login_challenge']; - final redirectUrl = state.uri.queryParameters['redirect_uri'] ?? - state.uri.queryParameters['redirect_url']; + final loginChallenge = + state.uri.queryParameters['login_challenge']; + final redirectUrl = + state.uri.queryParameters['redirect_uri'] ?? + state.uri.queryParameters['redirect_url']; return LoginScreen( key: state.pageKey, loginChallenge: loginChallenge, @@ -145,9 +147,11 @@ final _router = GoRouter( path: 'login', builder: (context, state) { // IMPORTANT: Match signin logic to handle OIDC challenges - final loginChallenge = state.uri.queryParameters['login_challenge']; - final redirectUrl = state.uri.queryParameters['redirect_uri'] ?? - state.uri.queryParameters['redirect_url']; + final loginChallenge = + state.uri.queryParameters['login_challenge']; + final redirectUrl = + state.uri.queryParameters['redirect_uri'] ?? + state.uri.queryParameters['redirect_url']; return LoginScreen( key: state.pageKey, loginChallenge: loginChallenge, @@ -158,10 +162,13 @@ final _router = GoRouter( GoRoute( path: 'consent', builder: (BuildContext context, GoRouterState state) { - final consentChallenge = state.uri.queryParameters['consent_challenge']; + final consentChallenge = + state.uri.queryParameters['consent_challenge']; if (consentChallenge == null) { return const Scaffold( - body: Center(child: Text('Error: Consent challenge is missing.')), + body: Center( + child: Text('Error: Consent challenge is missing.'), + ), ); } return ConsentScreen(consentChallenge: consentChallenge); @@ -231,15 +238,13 @@ final _router = GoRouter( ), GoRoute( path: 'approve', - builder: (context, state) => ApproveQrScreen( - pendingRef: state.uri.queryParameters['ref'], - ), + builder: (context, state) => + ApproveQrScreen(pendingRef: state.uri.queryParameters['ref']), ), GoRoute( path: 'ql/:ref', - builder: (context, state) => ApproveQrScreen( - pendingRef: state.pathParameters['ref'], - ), + builder: (context, state) => + ApproveQrScreen(pendingRef: state.pathParameters['ref']), ), GoRoute( path: 'scan', @@ -258,14 +263,15 @@ final _router = GoRouter( final uri = state.uri; final requestedLocale = extractLocaleFromPath(uri); final preferredLocale = resolvePreferredLocaleCode(); - + if (requestedLocale == null) { final localizedPath = buildLocalizedPath(preferredLocale, uri); return localizedPath; } final token = AuthTokenStore.getToken(); - final isLoggedIn = (token != null && token.isNotEmpty) || AuthTokenStore.usesCookie(); + final isLoggedIn = + (token != null && token.isNotEmpty) || AuthTokenStore.usesCookie(); final path = stripLocalePath(uri); // Precise public path detection