Added logic to edit technician config in WI #127

This commit is contained in:
2023-08-14 11:58:36 +02:00
parent eac367c611
commit 8922524f44
7 changed files with 234 additions and 39 deletions

View File

@@ -74,6 +74,6 @@ class TechnicianPingUrlConfig(TableABC):
return str(
f"""
DELETE FROM `CFG_TechnicianPingUrls`
WHERE `URL` = {self._ping_url};
WHERE `URL` = '{self._ping_url}';
"""
)