cloud-ide-lms-model 1.0.110 → 1.0.112
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -9,9 +9,6 @@ class MSystemThemeUserPreferencesRequest {
|
|
|
9
9
|
}
|
|
10
10
|
Validate() {
|
|
11
11
|
let errorLogger = {};
|
|
12
|
-
if (!this.syth_theme_id) {
|
|
13
|
-
errorLogger.syth_theme_id = "Theme ID is Required!";
|
|
14
|
-
}
|
|
15
12
|
if (!this.syupth_user_id_user) {
|
|
16
13
|
errorLogger.syupth_user_id_user = "User ID is Required!";
|
|
17
14
|
}
|
|
@@ -13,5 +13,9 @@ declare const designConfigRoutesUrl: {
|
|
|
13
13
|
* this will return the system theme list for the application
|
|
14
14
|
*/
|
|
15
15
|
getSystemThemesList: string;
|
|
16
|
+
/**
|
|
17
|
+
* this will save the user specific theme
|
|
18
|
+
*/
|
|
19
|
+
systemThemeUserPreferences: string;
|
|
16
20
|
};
|
|
17
21
|
export { designConfigRoutesUrl };
|
|
@@ -15,7 +15,11 @@ const designConfigRoutesUrl = {
|
|
|
15
15
|
/**
|
|
16
16
|
* this will return the system theme list for the application
|
|
17
17
|
*/
|
|
18
|
-
getSystemThemesList: "system-themes-list"
|
|
18
|
+
getSystemThemesList: "system-themes-list",
|
|
19
|
+
/**
|
|
20
|
+
* this will save the user specific theme
|
|
21
|
+
*/
|
|
22
|
+
systemThemeUserPreferences: "system-theme-user-preferences"
|
|
19
23
|
};
|
|
20
24
|
exports.designConfigRoutesUrl = designConfigRoutesUrl;
|
|
21
25
|
Object.freeze(designConfigRoutesUrl);
|