Remove jwt_secret from config
Some checks failed
Build Backend (NixCN CMS) TeamCity build failed
Build Frontend (NixCN CMS) TeamCity build finished

Signed-off-by: Asai Neko <sugar@sne.moe>
This commit is contained in:
2026-01-05 22:02:28 +08:00
parent b0684492fa
commit eddfa9a884
2 changed files with 0 additions and 2 deletions

View File

@@ -28,7 +28,6 @@ email:
insecure_skip_verify: insecure_skip_verify:
from: from:
secrets: secrets:
jwt_secret: example
turnstile_secret: example turnstile_secret: example
client_secret_key: aes_32_byte_string client_secret_key: aes_32_byte_string
kyc_info_key: aes_32_byte_string kyc_info_key: aes_32_byte_string

View File

@@ -51,7 +51,6 @@ type email struct {
} }
type secrets struct { type secrets struct {
JwtSecret string `yaml:"jwt_secret"`
TurnstileSecret string `yaml:"turnstile_secret"` TurnstileSecret string `yaml:"turnstile_secret"`
ClientSecretKey string `yaml:"client_secret_key"` ClientSecretKey string `yaml:"client_secret_key"`
KycInfoKey string `yaml:"kyc_info_key"` KycInfoKey string `yaml:"kyc_info_key"`