* TP-49403 | parameterized slash command * TP-49403 | handeling resolve and rca params also implemented Help-Commands button * TP-49403 | using command pattern for command resolutiuon and execution * TP-49403 | made find team by name and find severity by name queries case insensitive * TP-49403 | updating help message keys
19 lines
842 B
Go
19 lines
842 B
Go
package internal
|
|
|
|
type houstonCommandParameter string
|
|
|
|
const (
|
|
StartIncidentParam houstonCommandParameter = "start"
|
|
OpenSeverityModalParam = "severity"
|
|
SetSeverityParam = "set severity to"
|
|
OpenTeamModalParam = "team"
|
|
SetTeamParam = "set team to"
|
|
OpenStatusModalParam = "status"
|
|
SetStatusParam = "set status to"
|
|
OpenDescriptionModalParam = "description"
|
|
SetDescriptionParam = "set description to"
|
|
ResolveIncidentParam = "resolve"
|
|
OpenRCAModalParam = "rca"
|
|
HelpParam = "help"
|
|
)
|