From a898716b39165f33ac3468de2d7c1f07b656ca8d Mon Sep 17 00:00:00 2001 From: npmrun <1549469775@qq.com> Date: Tue, 30 Jun 2026 17:31:31 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0=E9=BB=98=E8=AE=A4?= =?UTF-8?q?=E7=AB=99=E7=82=B9=E5=90=8D=E7=A7=B0=E4=B8=BA=20'My=20Small=20S?= =?UTF-8?q?ite'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/composables/useGlobalConfig.ts | 2 +- server/service/config/registry.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/composables/useGlobalConfig.ts b/app/composables/useGlobalConfig.ts index aaa289e..b77ee58 100644 --- a/app/composables/useGlobalConfig.ts +++ b/app/composables/useGlobalConfig.ts @@ -10,7 +10,7 @@ type GlobalConfigResult = { } const DEFAULT_GLOBAL_CONFIG: GlobalConfig = { - siteName: 'Person Panel', + siteName: 'My Small Site', allowRegister: true, } diff --git a/server/service/config/registry.ts b/server/service/config/registry.ts index b83ec50..91d6187 100644 --- a/server/service/config/registry.ts +++ b/server/service/config/registry.ts @@ -28,7 +28,7 @@ const CONFIG_REGISTRY = { key: "siteName", scope: "global", valueType: "string", - defaultValue: "Person Panel", + defaultValue: "My Small Site", userOverridable: false, validate: (value: string) => value.length <= 64, }),