Function
staticToolConnection
(integration: StaticIntegrationDecl)
Source from the content-addressed store, hash-verified
| 2064 | |
| 2065 | const staticToolOwner = (): Owner => (subject == null ? "org" : "user"); |
| 2066 | const staticToolConnection = (integration: StaticIntegrationDecl): ConnectionName => |
| 2067 | ConnectionName.make(integration.id === EXECUTOR_INTEGRATION_ID ? "coreTools" : "static"); |
| 2068 | |
| 2069 | const staticIntegrations = (): readonly StaticIntegrationDecl[] => { |
| 2070 | const byId = new Map<string, StaticIntegrationDecl>(); |
Tested by
no test coverage detected