about summary refs log tree commit diff
path: root/gn3/db/case_attributes.py
diff options
context:
space:
mode:
authorMunyoki Kilyungi2025-06-25 14:54:50 +0300
committerBonfaceKilz2025-07-07 07:58:31 +0300
commit45a558cd3025058d0a61fcfdcb0e301c1a3b5ec3 (patch)
tree5e28bf0a52f2969e70f96ae7e9bfcf74df424ad1 /gn3/db/case_attributes.py
parent13cda1f32ba613e1fefb80d323dfaa4fab7d45f6 (diff)
downloadgenenetwork3-45a558cd3025058d0a61fcfdcb0e301c1a3b5ec3.tar.gz
Delete "insert_case_attribute_audit."
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'gn3/db/case_attributes.py')
-rw-r--r--gn3/db/case_attributes.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/gn3/db/case_attributes.py b/gn3/db/case_attributes.py
index 6bb8b4b..c839214 100644
--- a/gn3/db/case_attributes.py
+++ b/gn3/db/case_attributes.py
@@ -79,25 +79,6 @@ def queue_edit(cursor, directory: Path, edit: CaseAttributeEdit) -> int:
         return review_ids
 
 
-def insert_case_attribute_audit(
-    conn: Any, status: str, author: str, data: str
-) -> int:
-    """Update the case_attribute_audit table"""
-    rowcount = 0
-    try:
-        with conn.cursor() as cursor:
-            cursor.execute(
-                "INSERT INTO caseattributes_audit "
-                "(status, editor, json_diff_data) "
-                "VALUES (%s, %s, %s)",
-                (status, author, data,),
-            )
-            rowcount = cursor.rowcount
-    except Exception as _e:
-        raise MySQLdb.Error(_e) from _e
-    return rowcount
-
-
 def reject_case_attribute(conn: Any, case_attr_audit_id: int) -> int:
     """Given the id of the json_diff in the case_attribute_audit table, reject
     it"""