(hub: Hub)
| 92 | } |
| 93 | |
| 94 | export async function getPluginConfigRows(hub: Hub): Promise<PluginConfig[]> { |
| 95 | const { rows }: { rows: PluginConfig[] } = await hub.db.postgresQuery( |
| 96 | pluginConfigsInForceQuery(), |
| 97 | undefined, |
| 98 | 'getPluginConfigRows' |
| 99 | ) |
| 100 | return rows |
| 101 | } |
| 102 | |
| 103 | export async function setPluginCapabilities( |
| 104 | hub: Hub, |
no test coverage detected
searching dependent graphs…