8 lines
433 B
TypeScript
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.
|
|
};
|