Function
staticToolConnection
(integration: StaticIntegrationDecl)
Source from the content-addressed store, hash-verified
| 1625 | |
| 1626 | const staticToolOwner = (): Owner => (subject == null ? "org" : "user"); |
| 1627 | const staticToolConnection = (integration: StaticIntegrationDecl): ConnectionName => |
| 1628 | ConnectionName.make(integration.id === EXECUTOR_INTEGRATION_ID ? "coreTools" : "static"); |
| 1629 | |
| 1630 | const staticIntegrations = (): readonly StaticIntegrationDecl[] => { |
| 1631 | const byId = new Map<string, StaticIntegrationDecl>(); |
Tested by
no test coverage detected