@afeefa/vue-app 0.0.263 → 0.0.264

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.
@@ -1 +1 @@
1
- 0.0.263
1
+ 0.0.264
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@afeefa/vue-app",
3
- "version": "0.0.263",
3
+ "version": "0.0.264",
4
4
  "description": "",
5
5
  "author": "Afeefa Kollektiv <kollektiv@afeefa.de>",
6
6
  "license": "MIT",
@@ -30,7 +30,10 @@ export class AfeefaAdmin {
30
30
  }
31
31
 
32
32
  customConfig (customConfig) {
33
- adminConfig.config = customConfig
33
+ adminConfig.config = {
34
+ ...adminConfig.config,
35
+ ...customConfig
36
+ }
34
37
  return this
35
38
  }
36
39
 
@@ -17,7 +17,9 @@ class AdminConfig {
17
17
  icons: {}
18
18
  }
19
19
 
20
- config = {}
20
+ config = {
21
+ has2FA: false
22
+ }
21
23
  }
22
24
 
23
25
  export const adminConfig = new AdminConfig()