Skip to content

Commit c95007e

Browse files
committed
Add integration location id
1 parent 7bd22c0 commit c95007e

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

app/entry.go

+5-4
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@ const (
2020
)
2121

2222
type IntegrationPoint struct {
23-
IntegrateApp GlobalAppID `json:"integrateApp,omitempty"` // what app to load into
24-
Location IntegrationLocation `json:"location,omitempty"` // Where to load the app
25-
PathID string `json:"pathID,omitempty"` //remote app path ID
26-
EntryPoint EntryPoint `json:"entryPoint,omitempty"` // Navigation, when panel location, dst path is used
23+
IntegrateApp GlobalAppID `json:"integrateApp,omitempty"` // Which app to integrate into
24+
Location IntegrationLocation `json:"location,omitempty"` // Where to place the integration
25+
LocationID string `json:"locationID,omitempty"` // Location ID if multiple locations available
26+
PathID string `json:"pathID,omitempty"` // Remote app path ID
27+
EntryPoint EntryPoint `json:"entryPoint,omitempty"` // How the integration is presented
2728
RequiredPermissions []ScopedKey `json:"requiredPermissions,omitempty"` // Permissions that must be set for the user to see this item
2829
}
2930

0 commit comments

Comments
 (0)