* INFRA-3703 : Houston side changes to accomodate QA use case * INFRA-3703 : UT failure fix * INFRA-3703 : Minor changes * INFRA-3703 : Unique constraint * INFRA-3703 : Edit migration file * INFRA-3703 : PR review comments and UT's * INFRA-3703 : Channel name resolution
24 lines
506 B
Go
24 lines
506 B
Go
package slack
|
|
|
|
const (
|
|
JiraLinksLabel = "Jira link(s)"
|
|
RCASummaryLabel = "RCA summary"
|
|
RCADetailsLabel = "RCA details"
|
|
JiraIdSeparator = "/browse/"
|
|
)
|
|
|
|
// slack element types
|
|
const (
|
|
MarkDownElementType = "mrkdwn"
|
|
PlainTextType = "plain_text"
|
|
)
|
|
|
|
const (
|
|
RCAGenerationErrorMessage = "Some issue occurred while generating RCA."
|
|
)
|
|
|
|
const (
|
|
IncidentIssueTypeModalRequest = "incident_issue_type_modal_request"
|
|
IncidentIssueTypeModalRequestInput = "incident_issue_type_modal_request_input"
|
|
)
|