Files
houston-be/common/util/constant.go
Ajay Devarakonda 1125f573b2 TP-44162 | Google Meet integration to create calendar invite with meeting link creation on incident creation (#277)
* TP-44158 | Adding service to get transcript files from Google Drive (#234)

Adding service to get transcript files from Google Drive

* TP-45120 (#275)

TP-45120 | merging Google auth implementation and calendar event fix

* TP-44162 | added service implementation for calendar actions

* TP-44162 | Updated label in slack message

* TP-44162 | Fixed build failures

* TP-44162 | Updated sql migration file name

* TP-44162 | added unit tests for google calendar service

* TP-48200 | updated response messages in link and unlink jira apis (#278)

* TP-44162 | resolved review comments

* TP-44158 | Adding service to get transcript files from Google Drive (#234)

Adding service to get transcript files from Google Drive

* TP-45120 (#275)

TP-45120 | merging Google auth implementation and calendar event fix

* TP-44162 | added service implementation for calendar actions

* TP-44162 | Updated label in slack message

* TP-44162 | Fixed build failures

* TP-44162 | Updated sql migration file name

* TP-44162 | added unit tests for google calendar service

* TP-44162 | resolved review comments

* TP-44162 | updated few naming conventions

* TP-44162 | Adding timeouts to google drive api calls and related UTs

* TP-44162 | Adding drive api timeout to viper for unit test

---------

Co-authored-by: Sriram Bhargav <sriram.bhargav@navi.com>
Co-authored-by: Shashank Shekhar <shashank.shekhar@navi.com>
2023-11-09 16:25:20 +05:30

56 lines
2.3 KiB
Go

package util
type BlockActionType string
const (
StartIncident BlockActionType = "start_incident"
ShowIncidents = "show_incidents"
Incident = "incident"
Tags = "tags"
AssignIncidentRole = "assign_incident_role"
ResolveIncident = "resolve_incident"
SetIncidentStatus = "set_incident_status"
SetIncidentType = "set_incident_type"
SetIncidentSeverity = "set_incident_severity"
SetIncidentTitle = "set_incident_title"
SetIncidentDescription = "set_incident_description"
SetRCA = "set_rca"
SetJiraLinks = "set_jira_links"
AddTags = "add_tags"
ShowTags = "show_tags"
RemoveTag = "remove_tags"
MarkIncidentDuplicate = "mark_incident_duplicate"
)
type ViewSubmissionType string
const (
StartIncidentSubmit ViewSubmissionType = "start_incident_submit"
AssignIncidentRoleSubmit = "assign_incident_role_submit"
SetIncidentStatusSubmit = "set_incident_status_submit"
SetIncidentTitleSubmit = "set_incident_title_submit"
SetIncidentDescriptionSubmit = "set_incident_description_submit"
SetIncidentSeveritySubmit = "set_incident_severity_submit"
SetIncidentTypeSubmit = "set_incident_type_submit"
UpdateTagSubmit = "updateTagSubmit"
SetIncidentRcaSubmit = "set_rca_submit"
SetIncidentJiraLinksSubmit = "set_Jira_links_submit"
ShowIncidentSubmit = "show_incident_submit"
MarkIncidentDuplicateSubmit = "mark_incident_duplicate_submit"
)
const (
UserChangeEvent = "user_change"
DeactivatedUserName = "Deactivated User"
AlreadyArchivedError = "already_archived"
NotInChannelError = "not_in_channel"
)
const (
GoogleDriveFileMimeType = "application/vnd.google-apps.folder"
)
const (
ConferenceMessage = "To discuss, use this *<%s|Meet link>*"
)