From 1749903d6ebe1331b70b179136ca157fad51073e Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Sat, 27 Aug 2022 09:14:10 +0200 Subject: [PATCH] Fix --- conf/config.json | 6 +++--- config_panel.toml | 6 ++++++ 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/conf/config.json b/conf/config.json index 9c18303..8fb8ddd 100644 --- a/conf/config.json +++ b/conf/config.json @@ -30,10 +30,10 @@ "link": "http://__DOMAIN__/about", "description": "__FEED_DESCRIPTION__", "author": { - "name": "Author Name", - "email": "author@somewhere.example" + "name": "__AUTHOR_NAME__", + "email": "__AUTHOR_EMAIL__" }, - "copyright": "Copyright Text" + "copyright": "__COPYRIGHT_TEXT__" }, "copyright": { "content": "All Content herein Public Domain and User Contributed." diff --git a/config_panel.toml b/config_panel.toml index c0b29ac..071821e 100644 --- a/config_panel.toml +++ b/config_panel.toml @@ -39,3 +39,9 @@ services = ["__APP__"] type = "string" help = "Set the author email for the RSS feed" bind = "email:/var/www/__APP__/config.json" + + [main.rss.copyright_text] + ask = "Copyright Text" + type = "string" + help = "Set copyright text for the RSS feed" + bind = "email:/var/www/__APP__/config.json"