Forráskód Böngészése

Updated the code to search for only non deleted rules

rota3015 7 hónapja
szülő
commit
834f24a048
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      chatbot/routes.py

+ 1 - 1
chatbot/routes.py

@@ -49,7 +49,7 @@ def find_closest_match(user_input):
     user_tokens = user_input.split()
     results = []
     cursor = conn.cursor()
-    cursor.execute("SELECT summary, modules, name, rule_id FROM rules")
+    cursor.execute("SELECT summary, modules, name, rule_id FROM rules WHERE deleted = 0")
     rows = cursor.fetchall()
     cursor.close()