@glissandoo/lib 1.62.6 → 1.62.7
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/models/Group/index.js +4 -4
- package/package.json +1 -1
package/models/Group/index.js
CHANGED
|
@@ -144,13 +144,13 @@ class Group extends basic_1.default {
|
|
|
144
144
|
}
|
|
145
145
|
get configSites() {
|
|
146
146
|
return {
|
|
147
|
-
[types_1.GroupConfigSitesKey.Active]: types_1.GroupConfigSitesKey.Active in this.data.
|
|
147
|
+
[types_1.GroupConfigSitesKey.Active]: types_1.GroupConfigSitesKey.Active in this.data.configSites
|
|
148
148
|
? this.data.configSites[types_1.GroupConfigSitesKey.Active]
|
|
149
149
|
: false,
|
|
150
|
-
[types_1.GroupConfigSitesKey.ShowEvents]: types_1.GroupConfigSitesKey.ShowEvents in this.data.
|
|
150
|
+
[types_1.GroupConfigSitesKey.ShowEvents]: types_1.GroupConfigSitesKey.ShowEvents in this.data.configSites
|
|
151
151
|
? this.data.configSites[types_1.GroupConfigSitesKey.ShowEvents]
|
|
152
|
-
:
|
|
153
|
-
[types_1.GroupConfigSitesKey.ShowMembers]: types_1.GroupConfigSitesKey.ShowMembers in this.data.
|
|
152
|
+
: false,
|
|
153
|
+
[types_1.GroupConfigSitesKey.ShowMembers]: types_1.GroupConfigSitesKey.ShowMembers in this.data.configSites
|
|
154
154
|
? this.data.configSites[types_1.GroupConfigSitesKey.ShowMembers]
|
|
155
155
|
: false,
|
|
156
156
|
};
|