diff --git a/apps/rsshub/2025-01-01/.env b/apps/rsshub/2025-01-01/.env index 172f9b1..ce49619 100644 --- a/apps/rsshub/2025-01-01/.env +++ b/apps/rsshub/2025-01-01/.env @@ -28,3 +28,15 @@ PROXY_AUTH= # 代理 URL 正则表达式 PROXY_URL_REGEX=.* +# 用户 ID +FOLLOW_OWNER_USER_ID= + +# 服务描述 +FOLLOW_DESCRIPTION= + +# 月度价格 [必填] +FOLLOW_PRICE=100 + +# 用户限制 [必填] +FOLLOW_USER_LIMIT=100 + diff --git a/apps/rsshub/2025-01-01/data.yml b/apps/rsshub/2025-01-01/data.yml index 3d0b87f..6814f1e 100644 --- a/apps/rsshub/2025-01-01/data.yml +++ b/apps/rsshub/2025-01-01/data.yml @@ -76,3 +76,31 @@ additionalProperties: labelEn: Proxy URL regular expression required: false type: text + - default: "" + edit: true + envKey: FOLLOW_OWNER_USER_ID + labelZh: 用户 ID + labelEn: User id + required: false + type: text + - default: "" + edit: true + envKey: FOLLOW_DESCRIPTION + labelZh: 服务描述 + labelEn: Service description + required: false + type: text + - default: 100 + edit: true + envKey: FOLLOW_PRICE + labelZh: 月度价格 + labelEn: Service price + required: true + type: number + - default: 100 + edit: true + envKey: FOLLOW_USER_LIMIT + labelZh: 用户限制 + labelEn: User limit + required: true + type: number