Add new "removefeed" command to

support deleting feeds in the Matrix RSS Bot

This commit adds a new "removefeed" command to the Matrix RSS Bot,
which allows users to delete existing RSS feeds from the bot's list of
subscribed feeds. The "removefeed" command is added to the "__init__.py"
file in the "matrix_rssbot/classes/commands" directory.
This commit is contained in:
Kumi 2024-03-02 17:39:39 +01:00
parent 3b95dc0d3e
commit bd6210bb4a
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -12,6 +12,7 @@ for command in [
"addfeed",
"listfeeds",
"processfeeds",
"removefeed",
]:
function = getattr(import_module(
"." + command, "matrix_rssbot.classes.commands"), "command_" + command)