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:
parent
3b95dc0d3e
commit
bd6210bb4a
1 changed files with 1 additions and 0 deletions
|
@ -12,6 +12,7 @@ for command in [
|
|||
"addfeed",
|
||||
"listfeeds",
|
||||
"processfeeds",
|
||||
"removefeed",
|
||||
]:
|
||||
function = getattr(import_module(
|
||||
"." + command, "matrix_rssbot.classes.commands"), "command_" + command)
|
||||
|
|
Loading…
Reference in a new issue