@solidstarters/solid-core 1.2.91 → 1.2.92
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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solidstarters/solid-core",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.92",
|
|
4
4
|
"description": "This module is a NestJS module containing all the required core providers required by a Solid application",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -58,7 +58,8 @@ export class SettingService extends CRUDService<Setting> {
|
|
|
58
58
|
appPrivacyPolicy: "",
|
|
59
59
|
defaultRole: this.iamConfiguration.defaultRole,
|
|
60
60
|
shouldQueueEmails: this.commonConfiguration.shouldQueueEmails,
|
|
61
|
-
shouldQueueSms: this.commonConfiguration.shouldQueueSms
|
|
61
|
+
shouldQueueSms: this.commonConfiguration.shouldQueueSms,
|
|
62
|
+
enableDarkMode: true
|
|
62
63
|
};
|
|
63
64
|
|
|
64
65
|
const existingSettings = await this.repo.find();
|
|
@@ -138,7 +139,8 @@ export class SettingService extends CRUDService<Setting> {
|
|
|
138
139
|
appPrivacyPolicy: "",
|
|
139
140
|
defaultRole: this.iamConfiguration.defaultRole,
|
|
140
141
|
shouldQueueEmails: this.commonConfiguration.shouldQueueEmails,
|
|
141
|
-
shouldQueueSms: this.commonConfiguration.shouldQueueSms
|
|
142
|
+
shouldQueueSms: this.commonConfiguration.shouldQueueSms,
|
|
143
|
+
enableDarkMode: true
|
|
142
144
|
};
|
|
143
145
|
}
|
|
144
146
|
|