소스 검색

Updated the code to search for only non deleted rules

rota3015 7 달 전
부모
커밋
834f24a048
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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()