Function
staticToolConnection
(integration: StaticIntegrationDecl)
Source from the content-addressed store, hash-verified
| 1385 | |
| 1386 | const staticToolOwner = (): Owner => (subject == null ? "org" : "user"); |
| 1387 | const staticToolConnection = (integration: StaticIntegrationDecl): ConnectionName => |
| 1388 | ConnectionName.make(integration.id === EXECUTOR_INTEGRATION_ID ? "coreTools" : "static"); |
| 1389 | |
| 1390 | const staticIntegrations = (): readonly StaticIntegrationDecl[] => { |
| 1391 | const byId = new Map<string, StaticIntegrationDecl>(); |
Tested by
no test coverage detected