Add a module enabler

Add module enabler in settings.
This loops over all the exported Modules in the components/modules folder and renders them. (Interpreted language magic/ metaclasses)
This commit is contained in:
Aj - Thomas
2022-05-10 20:33:11 +02:00
parent 1245f97e72
commit 2c461a6695
7 changed files with 57 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
export interface Settings {
searchUrl: string;
searchBar: boolean;
enabledModules: string[];
[key: string]: any;
}