浏览代码

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.

Kumi 8 月之前
父节点
当前提交
bd6210bb4a
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      src/matrix_rssbot/classes/commands/__init__.py

+ 1 - 0
src/matrix_rssbot/classes/commands/__init__.py

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