Updating incident status format (#50)

* TP-0000 | changeing casing of incident status

* TP-0000 | removing unwanted enum values
This commit is contained in:
Shubham Kirve
2023-04-28 12:47:49 +05:30
committed by GitHub Enterprise
parent c1a67c4177
commit 9b0e4322df

View File

@@ -12,16 +12,16 @@ type IncidentStatus string
const (
Investigating IncidentStatus = "Investigating"
Identified IncidentStatus = "Identified"
Monitoring IncidentStatus = "Monitoring"
Resolved IncidentStatus = "Resolved"
Duplicated IncidentStatus = "Duplicated"
Identified = "Identified"
Monitoring = "Monitoring"
Resolved = "Resolved"
Duplicated = "Duplicated"
)
const (
Retrospective IncidentRole = "Retrospective"
Responder IncidentRole = "Responder"
ServiceOwner IncidentRole = "Service Owner"
Responder = "Responder"
ServiceOwner = "Service Owner"
)
type IncidentRole string