Function
staticToolConnection
(integration: StaticIntegrationDecl)
Source from the content-addressed store, hash-verified
| 1639 | |
| 1640 | const staticToolOwner = (): Owner => (subject == null ? "org" : "user"); |
| 1641 | const staticToolConnection = (integration: StaticIntegrationDecl): ConnectionName => |
| 1642 | ConnectionName.make(integration.id === EXECUTOR_INTEGRATION_ID ? "coreTools" : "static"); |
| 1643 | |
| 1644 | const staticIntegrations = (): readonly StaticIntegrationDecl[] => { |
| 1645 | const byId = new Map<string, StaticIntegrationDecl>(); |
Tested by
no test coverage detected