17 lines
927 B
TypeScript
17 lines
927 B
TypeScript
export const SECURITY_TERMS_VERSION = "1.0";
|
|
|
|
export const securityTerms = {
|
|
terms: [
|
|
"Aislo는 임도 설계 및 견적 자동화 기능을 제공하며, 계정의 무단 공유와 서비스 방해 행위를 금지합니다.",
|
|
"Aislo provides forest-road design and estimation automation. Account sharing and service disruption are prohibited.",
|
|
],
|
|
privacy: [
|
|
"계정, 회사, User-Agent 및 서비스 활동 기록을 인증·보안·운영 목적으로 처리합니다. IP 주소는 수집하지 않습니다.",
|
|
"Account, company, user-agent, and activity records are processed for authentication, security, and operations. IP addresses are not collected.",
|
|
],
|
|
security: [
|
|
"세션은 Secure HttpOnly 쿠키로 보호되며, 12시간 또는 4시간 비활동 후 만료됩니다.",
|
|
"Sessions use Secure HttpOnly cookies and expire after 12 hours or 4 hours of inactivity.",
|
|
],
|
|
} as const;
|