MCPcopy Create free account
hub / github.com/adcontextprotocol/adcp / getAllSettings

Function getAllSettings

server/src/db/system-settings-db.ts:120–125  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

118 * Get all settings
119 */
120export async function getAllSettings(): Promise<SystemSetting[]> {
121 const result = await query<SystemSetting>(
122 `SELECT * FROM system_settings ORDER BY key`
123 );
124 return result.rows;
125}
126
127/**
128 * Get recent audit entries for system settings changes

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected