MCPcopy Create free account
hub / github.com/anus-dev/ANUS / getRestartRequiredSettings

Function getRestartRequiredSettings

packages/cli/src/utils/settingsUtils.ts:86–90  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

84 * Get all setting keys that require restart
85 */
86export function getRestartRequiredSettings(): string[] {
87 return Object.values(FLATTENED_SCHEMA)
88 .filter((definition) => definition.requiresRestart)
89 .map((definition) => definition.key);
90}
91
92/**
93 * Recursively gets a value from a nested object using a key path array.

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected