fix: remove LunaSea (#1759)

* refactor(lunasea-removal): remove LunaSea

fixes #1756

* chore(localization): undo localization changes in favor of weblate
This commit is contained in:
ionred
2025-07-09 09:03:06 -05:00
committed by GitHub
parent 8c43db2abf
commit 510108f9bb
12 changed files with 14 additions and 570 deletions

View File

@@ -0,0 +1,14 @@
import type { AllSettings } from '@server/lib/settings';
const removeLunaSeaSetting = (settings: any): AllSettings => {
if (
settings.notifications &&
settings.notifications.agents &&
settings.notifications.agents.lunasea
) {
delete settings.notifications.agents.lunasea;
}
return settings;
};
export default removeLunaSeaSetting;