Files
lst_v3/backend/system/settingsUpdate.controller.ts
2026-02-20 16:54:01 -06:00

8 lines
433 B
TypeScript

import type { Setting } from "../db/schema/settings.schema.js";
export const updateSetting = async (setting: Setting) => {
// TODO: when the setting is a feature setting we will need to have it run each kill switch on the crons well just stop them and during a reset it just wont start them
// TODO: when the setting is a system we will need to force an app restart
// TODO: when the setting is standard we don't do anything.
};