backend: INC_UPDATE -> INCIDENT_UPDATE
This commit is contained in:
parent
aa0a200a59
commit
a44574249a
2 changed files with 2 additions and 2 deletions
|
@ -62,7 +62,7 @@ def publish_update(manager, incident_id: int):
|
|||
by requering the database.
|
||||
"""
|
||||
full = fetch_dict(manager.conn, incident_id)
|
||||
manager.publish_incident(OP.INC_UPDATE, full)
|
||||
manager.publish_incident(OP.INCIDENT_UPDATE, full)
|
||||
|
||||
|
||||
def incident_dict(conn, row) -> dict:
|
||||
|
|
|
@ -19,7 +19,7 @@ class OP:
|
|||
|
||||
# incident specific
|
||||
INCIDENT_NEW = 4
|
||||
INC_UPDATE = 5
|
||||
INCIDENT_UPDATE = 5
|
||||
INCIDENT_CLOSE = 6
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue