Skip to content

Commit

Permalink
uniq id to support multi jira
Browse files Browse the repository at this point in the history
  • Loading branch information
jnathangreeg committed Dec 8, 2024
1 parent a75e134 commit 0c720d5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions armotypes/integrationtypes.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const (

type Ticket struct {
GUID string `json:"guid,omitempty"` //ticket guid in armo
IntegrationID string `json:"integrationID,omitempty"`//integration guid in armo
TicketManager TicketManager `json:"ticketManager"` //ticket service provider
Owner map[string]string `json:"owner,omitempty"` //armo entity that owns the ticket
Subjects []map[string]string `json:"subjects,omitempty"` //armo entities mentioned in the ticket
Expand Down
3 changes: 3 additions & 0 deletions notifications/collaborationconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ type CollaborationConfig struct {
// Example: jira
Provider ChannelProvider `json:"provider,omitempty" bson:"provider,omitempty"`

// Integration ID for supporting multiple integrations to jira
IntegrationID string `json:"IntegrationID,omitempty" bson:"integrationID,omitempty"`

// Host name for private hosting
// Example: http://example.com
HostName string `json:"hostName,omitempty" bson:"hostName,omitempty"`
Expand Down

0 comments on commit 0c720d5

Please sign in to comment.