@necrolab/dashboard 0.4.208 → 0.4.209

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/README.md CHANGED
@@ -1,101 +1,3 @@
1
- # russonoro
1
+ # Necro
2
2
 
3
- This template should help get you started developing with Vue 3 in Vite.
4
-
5
- ## Recommended IDE Setup
6
-
7
- [VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
8
-
9
- ## Customize configuration
10
-
11
- See [Vite Configuration Reference](https://vitejs.dev/config/).
12
-
13
- ## Project Setup
14
-
15
- ```sh
16
- npm install
17
- ```
18
-
19
- ### Compile and Hot-Reload for Development
20
-
21
- ```sh
22
- npm run dev
23
- ```
24
-
25
- ### Compile and Minify for Production
26
-
27
- ```sh
28
- npm run build
29
- ```
30
-
31
- ## Filter stuff
32
-
33
- All filter types can have the following fields:
34
-
35
- - eventId: "ABCDEF123456789" (eventId that the filter will apply too)
36
- - priceSort: "asc|desc|null" (order of tickets that will be carted)
37
- - maxPrice: 100 (max price of tickets)
38
- - minPrice: 0 (min price of tickets)
39
- - exclude: true|false (is excluded)
40
-
41
- ### Standard
42
-
43
- ```json
44
- {
45
- "section": "205",
46
- "rows": ["A", "B", "D"]
47
- }
48
- ```
49
-
50
- ### First row
51
-
52
- Shorthand for the standard filter, that will only include the first row of the section
53
-
54
- ```json
55
- {
56
- "section": "205",
57
- "firstRow": true
58
- }
59
- ```
60
-
61
- ### First-Row Catch-All
62
-
63
- ```json
64
- {
65
- "buyAny": true,
66
- "firstRow": true,
67
- }
68
- // same
69
- {
70
- "firstRow": true,
71
- }
72
- ```
73
-
74
- ### Catch-All
75
-
76
- ```json
77
- {
78
- "buyAny": true
79
- }
80
- ```
81
-
82
- ### GA Catch-all
83
-
84
- ```json
85
- {
86
- "generalAdmission": true
87
- }
88
- ```
89
-
90
- - [x] Blacklist toggle
91
- - [x] Blacklist checkmark on each filter
92
- - [x] Highlight excluded rows/secs in the map
93
- - [x] Container with border for the map
94
- - [x] Toggle for showing only blacklist/all/whitelist
95
- - [x] Zoom in/out & reset buttons like on TM
96
- - [x] Implement new firstRow mechanic
97
- - [x] Optimize map
98
- - [x] Drag/Drop with mouse to select rows
99
- - [ ] Use icons everywhere
100
- - [ ] Use textbox/buttons from task creator
101
- - [x] Support GA sections correctly (I think correct)
3
+ PWA dashboard using vue.js and vite
@@ -166,7 +166,7 @@ const addTask = async (data) => {
166
166
 
167
167
  var taskObj = new TicketMaster(task);
168
168
  taskObj.data.openerLink =
169
- "russonoro://eyJzbHVnIjoiaHRKQnR1aTRMMzFmU3BtaVVDQngiLCJjb25maWciOnsib3ZlcndyaXRlUHJveHkiOm51bGwsImRlYnVnIjp0cnVlfX0=";
169
+ "necro://eyJzbHVnIjoiaHRKQnR1aTRMMzFmU3BtaVVDQngiLCJjb25maWciOnsib3ZlcndyaXRlUHJveHkiOm51bGwsImRlYnVnIjp0cnVlfX0=";
170
170
  taskObj.data.siteId = data.siteId;
171
171
 
172
172
  // if (!Object.values(Bot.Tasks).find((t) => t.email == taskObj.email))
@@ -16,14 +16,14 @@ const users = [
16
16
  admin: true,
17
17
  proxyList: { checkout: "admin-proxies" },
18
18
  profileTags: ["Amex", "Citi", "Mercury", "CapOne", "Veridian", "WIO", "Kez", "Xpence"],
19
- accountTags: ["russonoro", "paolo", "dubai"]
19
+ accountTags: ["admin"]
20
20
  }
21
21
  ];
22
22
 
23
23
  const profile = {
24
24
  _id: "645a82606ef8b7201b728805",
25
25
  enabled: false,
26
- profileName: "Master US 43725 [RUSSONORO]",
26
+ profileName: "Master US 43725 [admin]",
27
27
  address: "88081 Piper Ways",
28
28
  city: "Gilbert",
29
29
  state: "MN",
@@ -35,7 +35,7 @@ const profile = {
35
35
  cvv: "136",
36
36
  totalSpent: 905.75,
37
37
  orders: ["sandersonsandezomar1239@gmail.com - 35-57435/NCA - 1C005E7E94D81D8A - 1684344138367 - Melanie Martinez"],
38
- tags: ["russonoro", "master", "slash"],
38
+ tags: ["admin", "master", "slash"],
39
39
  checkouts: 1,
40
40
  declines: 0,
41
41
  createdBy: "admin"
@@ -49,7 +49,7 @@ module.exports = {
49
49
  profiles,
50
50
  tmAccounts: [
51
51
  {
52
- tags: ["russonoro"],
52
+ tags: ["admin"],
53
53
  _id: 1,
54
54
  password: "123",
55
55
  email: "tm@tm.com"
@@ -57,7 +57,7 @@ module.exports = {
57
57
  ],
58
58
  axsAccounts: [
59
59
  {
60
- tags: ["russonoro"],
60
+ tags: ["admin"],
61
61
  _id: 2,
62
62
  password: "123",
63
63
  email: "axs@axs.com"
package/index.html CHANGED
@@ -7,8 +7,8 @@
7
7
  name="viewport"
8
8
  content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover"
9
9
  />
10
- <meta name="description" content="Russonoro dashboard" />
11
- <title>Russonoro - Dashboard</title>
10
+ <meta name="description" content="Necro Lab - dashboard" />
11
+ <title>Necro Lab - Dashboard</title>
12
12
  <link rel="preconnect" href="https://fonts.googleapis.com" />
13
13
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
14
14
  <link
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@necrolab/dashboard",
3
- "version": "0.4.208",
3
+ "version": "0.4.209",
4
4
  "scripts": {
5
5
  "build": "npx workbox-cli generateSW workbox-config.js && vite build",
6
6
  "dev": "vite",
@@ -259,7 +259,7 @@ const openInBrowser = (debug) => {
259
259
  const input = props.task.openerLink;
260
260
  const data = JSON.parse(atob(input.split("://")[1]));
261
261
  data.config.debug = debug;
262
- const out = "russonoro://" + btoa(JSON.stringify(data));
262
+ const out = "necro://" + btoa(JSON.stringify(data));
263
263
  openInNewTab(out);
264
264
  };
265
265
 
@@ -2,8 +2,8 @@
2
2
  <div class="navbar" :class="{ 'force-z': menuOpen }">
3
3
  <div :class="`component-container ios-wrapper flex items-center relative ${landscapeIos ? 'ios-wrapper' : ''}`">
4
4
  <!-- Brand -->
5
- <!-- <h3 class="font-bold text-white mr-4 z-30">Russonoro Labs</h3> -->
6
- <img src="@/assets/img/logo_trans.png" class="h-6 lg:h-8 mr-4 z-30 object-cover" alt="Logo: Russonoro" />
5
+ <!-- <h3 class="font-bold text-white mr-4 z-30">Necro Lab</h3> -->
6
+ <img src="@/assets/img/logo_trans.png" class="h-6 lg:h-8 mr-4 z-30 object-cover" alt="Logo: Necro" />
7
7
  <!-- Navlinks -->
8
8
  <ul class="hidden lg:flex">
9
9
  <li>
@@ -67,7 +67,7 @@ export default {
67
67
  // agedAccount: false,
68
68
  // presaleCode: "",
69
69
  // smartTimer: false,
70
- // accountTag: "Russonoro",
70
+ // accountTag: "admin",
71
71
  // profileTags: ["Any"],
72
72
  // eventName: "Taylor Swift | The Eras Tour",
73
73
  // eventDate: "2023-05-19T22:30:00.000Z",
@@ -101,7 +101,7 @@ export default {
101
101
  agedAccount: false,
102
102
  presaleCode: "",
103
103
  smartTimer: false,
104
- accountTag: "Russonoro",
104
+ accountTag: "admin",
105
105
  profileTags: ["Any"],
106
106
  eventName: "Morgan Wallen: One Night At A Time World Tour",
107
107
  eventDate: "2024-06-06T23:00:00.000Z",
@@ -135,7 +135,7 @@ export default {
135
135
  agedAccount: false,
136
136
  presaleCode: "",
137
137
  smartTimer: false,
138
- accountTag: "Russonoro",
138
+ accountTag: "admin",
139
139
  profileTags: ["Any"],
140
140
  eventName: "Taylor Swift | The Eras Tour",
141
141
  eventDate: "2023-05-21T22:30:00.000Z",
@@ -203,7 +203,7 @@ export default {
203
203
  agedAccount: false,
204
204
  presaleCode: "",
205
205
  smartTimer: false,
206
- accountTag: "Russonoro",
206
+ accountTag: "admin",
207
207
  profileTags: ["Any"],
208
208
  eventName: "Taylor Swift | The Eras Tour",
209
209
  eventDate: "2023-05-19T22:30:00.000Z",
@@ -237,7 +237,7 @@ export default {
237
237
  agedAccount: false,
238
238
  presaleCode: "",
239
239
  smartTimer: false,
240
- accountTag: "Russonoro",
240
+ accountTag: "admin",
241
241
  profileTags: ["Any"],
242
242
  eventName: "Melanie Martinez: PORTALS Tour",
243
243
  eventDate: "2023-06-30T23:30:00.000Z",
@@ -271,7 +271,7 @@ export default {
271
271
  agedAccount: false,
272
272
  presaleCode: "",
273
273
  smartTimer: false,
274
- accountTag: "Russonoro",
274
+ accountTag: "admin",
275
275
  profileTags: ["Any"],
276
276
  eventName: "Taylor Swift | The Eras Tour",
277
277
  eventDate: "2023-05-20T22:30:00.000Z",
@@ -305,7 +305,7 @@ export default {
305
305
  agedAccount: false,
306
306
  presaleCode: "",
307
307
  smartTimer: false,
308
- accountTag: "Russonoro",
308
+ accountTag: "admin",
309
309
  profileTags: ["Any"],
310
310
  eventName: "Morgan Wallen: One Night At A Time World Tour",
311
311
  eventDate: "2023-11-11T22:30:00.000Z",
@@ -339,7 +339,7 @@ export default {
339
339
  agedAccount: false,
340
340
  presaleCode: "",
341
341
  smartTimer: false,
342
- accountTag: "Russonoro",
342
+ accountTag: "admin",
343
343
  profileTags: ["Any"],
344
344
  eventName: "Taylor Swift | The Eras Tour",
345
345
  eventDate: "2023-05-21T22:30:00.000Z",
@@ -373,7 +373,7 @@ export default {
373
373
  agedAccount: false,
374
374
  presaleCode: "",
375
375
  smartTimer: false,
376
- accountTag: "Russonoro",
376
+ accountTag: "admin",
377
377
  profileTags: ["Any"],
378
378
  eventName: "Taylor Swift | The Eras Tour",
379
379
  eventDate: "2023-05-21T22:30:00.000Z",
@@ -407,7 +407,7 @@ export default {
407
407
  agedAccount: false,
408
408
  presaleCode: "",
409
409
  smartTimer: false,
410
- accountTag: "Russonoro",
410
+ accountTag: "admin",
411
411
  profileTags: ["Any"],
412
412
  eventName: "Taylor Swift | The Eras Tour",
413
413
  eventDate: "2023-05-21T22:30:00.000Z",
@@ -441,7 +441,7 @@ export default {
441
441
  agedAccount: false,
442
442
  presaleCode: "",
443
443
  smartTimer: false,
444
- accountTag: "Russonoro",
444
+ accountTag: "admin",
445
445
  profileTags: ["Any"],
446
446
  eventName: "Taylor Swift | The Eras Tour",
447
447
  eventDate: "2023-05-21T22:30:00.000Z",
@@ -475,7 +475,7 @@ export default {
475
475
  agedAccount: false,
476
476
  presaleCode: "",
477
477
  smartTimer: false,
478
- accountTag: "Russonoro",
478
+ accountTag: "admin",
479
479
  profileTags: ["Any"],
480
480
  eventName: "Taylor Swift | The Eras Tour",
481
481
  eventDate: "2023-05-21T22:30:00.000Z",
@@ -506,7 +506,7 @@ export default {
506
506
  agedAccount: false,
507
507
  presaleCode: "",
508
508
  smartTimer: false,
509
- accountTag: "Russonoro",
509
+ accountTag: "admin",
510
510
  profileTags: ["Any"],
511
511
  eventName: "Taylor Swift | The Eras Tour",
512
512
  eventDate: "2023-05-21T22:30:00.000Z",
@@ -538,7 +538,7 @@ export default {
538
538
  agedAccount: false,
539
539
  presaleCode: "",
540
540
  smartTimer: false,
541
- accountTag: "Russonoro",
541
+ accountTag: "admin",
542
542
  profileTags: ["Any"],
543
543
  eventName: "Taylor Swift | The Eras Tour",
544
544
  eventDate: "2023-05-21T22:30:00.000Z",
@@ -569,7 +569,7 @@ export default {
569
569
  agedAccount: false,
570
570
  presaleCode: "",
571
571
  smartTimer: false,
572
- accountTag: "Russonoro",
572
+ accountTag: "admin",
573
573
  profileTags: ["Any"],
574
574
  eventName: "Taylor Swift | The Eras Tour",
575
575
  eventDate: "2023-05-21T22:30:00.000Z",
@@ -600,7 +600,7 @@ export default {
600
600
  agedAccount: false,
601
601
  presaleCode: "",
602
602
  smartTimer: false,
603
- accountTag: "Russonoro",
603
+ accountTag: "admin",
604
604
  profileTags: ["Any"],
605
605
  eventName: "Taylor Swift | The Eras Tour",
606
606
  eventDate: "2023-05-21T22:30:00.000Z",
@@ -631,7 +631,7 @@ export default {
631
631
  agedAccount: false,
632
632
  presaleCode: "",
633
633
  smartTimer: false,
634
- accountTag: "Russonoro",
634
+ accountTag: "admin",
635
635
  profileTags: ["Any"],
636
636
  eventName: "Taylor Swift | The Eras Tour",
637
637
  eventDate: "2023-05-21T22:30:00.000Z",
@@ -662,7 +662,7 @@ export default {
662
662
  agedAccount: false,
663
663
  presaleCode: "",
664
664
  smartTimer: false,
665
- accountTag: "Russonoro",
665
+ accountTag: "admin",
666
666
  profileTags: ["Any"],
667
667
  eventName: "Taylor Swift | The Eras Tour",
668
668
  eventDate: "2023-05-21T22:30:00.000Z",
@@ -693,7 +693,7 @@ export default {
693
693
  agedAccount: false,
694
694
  presaleCode: "",
695
695
  smartTimer: false,
696
- accountTag: "Russonoro",
696
+ accountTag: "admin",
697
697
  profileTags: ["Any"],
698
698
  eventName: "Taylor Swift | The Eras Tour",
699
699
  eventDate: "2023-05-21T22:30:00.000Z",
@@ -724,7 +724,7 @@ export default {
724
724
  agedAccount: false,
725
725
  presaleCode: "",
726
726
  smartTimer: false,
727
- accountTag: "Russonoro",
727
+ accountTag: "admin",
728
728
  profileTags: ["Any"],
729
729
  eventName: "Taylor Swift | The Eras Tour",
730
730
  eventDate: "2023-05-21T22:30:00.000Z",
@@ -740,14 +740,14 @@ export default {
740
740
  email: "aaaa@aaa.com",
741
741
  password: "password123",
742
742
  enabled: true,
743
- tags: ["russonoro", "amex", "peet"]
743
+ tags: ["admin", "amex", "peet"]
744
744
  },
745
745
  {
746
746
  _id: Math.random(),
747
747
  email: "bbb@bbb.com",
748
748
  password: "password123",
749
749
  enabled: true,
750
- tags: ["russonoro", "amex", "peet"]
750
+ tags: ["admin", "amex", "peet"]
751
751
  },
752
752
  {
753
753
  _id: Math.random(),
@@ -768,140 +768,140 @@ export default {
768
768
  email: "aaaabbbbb@cccc.com",
769
769
  password: "password123",
770
770
  enabled: true,
771
- tags: ["russonoro"]
771
+ tags: ["admin"]
772
772
  },
773
773
  {
774
774
  _id: Math.random(),
775
775
  email: "aa@ihbigb.com",
776
776
  password: "password123",
777
777
  enabled: true,
778
- tags: ["russonoro"]
778
+ tags: ["admin"]
779
779
  },
780
780
  {
781
781
  _id: Math.random(),
782
782
  email: "aaaa@aaa.com",
783
783
  password: "password123",
784
784
  enabled: true,
785
- tags: ["russonoro", "amex"]
785
+ tags: ["admin", "amex"]
786
786
  },
787
787
  {
788
788
  _id: Math.random(),
789
789
  email: "bbb@bbb.com",
790
790
  password: "password123",
791
791
  enabled: true,
792
- tags: ["russonoro", "amex", "peet"]
792
+ tags: ["admin", "amex", "peet"]
793
793
  },
794
794
  {
795
795
  _id: Math.random(),
796
796
  email: "aaa@bbb.com",
797
797
  password: "password123",
798
798
  enabled: true,
799
- tags: ["russonoro", "amex"]
799
+ tags: ["admin", "amex"]
800
800
  },
801
801
  {
802
802
  _id: Math.random(),
803
803
  email: "aabb@ccc.com",
804
804
  password: "password123",
805
805
  enabled: true,
806
- tags: ["russonoro", "amex"]
806
+ tags: ["admin", "amex"]
807
807
  },
808
808
  {
809
809
  _id: Math.random(),
810
810
  email: "aaaabbbbb@cccc.com",
811
811
  password: "password123",
812
812
  enabled: true,
813
- tags: ["russonoro", "amex"]
813
+ tags: ["admin", "amex"]
814
814
  },
815
815
  {
816
816
  _id: Math.random(),
817
817
  email: "aa@ihbigb.com",
818
818
  password: "password123",
819
819
  enabled: true,
820
- tags: ["russonoro", "amex"]
820
+ tags: ["admin", "amex"]
821
821
  },
822
822
  {
823
823
  _id: Math.random(),
824
824
  email: "aaaa@aaa.com",
825
825
  password: "password123",
826
826
  enabled: true,
827
- tags: ["russonoro", "amex"]
827
+ tags: ["admin", "amex"]
828
828
  },
829
829
  {
830
830
  _id: Math.random(),
831
831
  email: "bbb@bbb.com",
832
832
  password: "password123",
833
833
  enabled: true,
834
- tags: ["russonoro", "amex"]
834
+ tags: ["admin", "amex"]
835
835
  },
836
836
  {
837
837
  _id: Math.random(),
838
838
  email: "aaa@bbb.com",
839
839
  password: "password123",
840
840
  enabled: true,
841
- tags: ["russonoro", "amex"]
841
+ tags: ["admin", "amex"]
842
842
  },
843
843
  {
844
844
  _id: Math.random(),
845
845
  email: "aabb@ccc.com",
846
846
  password: "password123",
847
847
  enabled: true,
848
- tags: ["russonoro", "amex"]
848
+ tags: ["admin", "amex"]
849
849
  },
850
850
  {
851
851
  _id: Math.random(),
852
852
  email: "aaaabbbbb@cccc.com",
853
853
  password: "password123",
854
854
  enabled: true,
855
- tags: ["russonoro", "amex"]
855
+ tags: ["admin", "amex"]
856
856
  },
857
857
  {
858
858
  _id: Math.random(),
859
859
  email: "aa@ihbigb.com",
860
860
  password: "password123",
861
861
  enabled: true,
862
- tags: ["russonoro", "amex"]
862
+ tags: ["admin", "amex"]
863
863
  },
864
864
  {
865
865
  _id: Math.random(),
866
866
  email: "aaaa@aaa.com",
867
867
  password: "password123",
868
868
  enabled: true,
869
- tags: ["russonoro", "amex"]
869
+ tags: ["admin", "amex"]
870
870
  },
871
871
  {
872
872
  _id: Math.random(),
873
873
  email: "bbb@bbb.com",
874
874
  password: "password123",
875
875
  enabled: true,
876
- tags: ["russonoro", "amex"]
876
+ tags: ["admin", "amex"]
877
877
  },
878
878
  {
879
879
  _id: Math.random(),
880
880
  email: "aaa@bbb.com",
881
881
  password: "password123",
882
882
  enabled: true,
883
- tags: ["russonoro", "amex"]
883
+ tags: ["admin", "amex"]
884
884
  },
885
885
  {
886
886
  _id: Math.random(),
887
887
  email: "aabb@ccc.com",
888
888
  password: "password123",
889
889
  enabled: true,
890
- tags: ["russonoro", "amex"]
890
+ tags: ["admin", "amex"]
891
891
  },
892
892
  {
893
893
  _id: Math.random(),
894
894
  email: "aaaabbbbb@cccc.com",
895
895
  password: "password123",
896
896
  enabled: true,
897
- tags: ["russonoro", "amex"]
897
+ tags: ["admin", "amex"]
898
898
  },
899
899
  {
900
900
  _id: Math.random(),
901
901
  email: "aa@ihbigb.com",
902
902
  password: "password123",
903
903
  enabled: true,
904
- tags: ["russonoro", "amex"]
904
+ tags: ["admin", "amex"]
905
905
  }
906
906
  ],
907
907
  Profiles: [
@@ -911,7 +911,7 @@ export default {
911
911
  cardNumber: "48474638474545",
912
912
  expMonth: "12",
913
913
  expYear: "28",
914
- tags: ["russonoro", "amex"]
914
+ tags: ["admin", "amex"]
915
915
  },
916
916
  {
917
917
  _id: 2,
@@ -919,7 +919,7 @@ export default {
919
919
  cardNumber: "38474638474545",
920
920
  expMonth: "12",
921
921
  expYear: "28",
922
- tags: ["russonoro", "amex"]
922
+ tags: ["admin", "amex"]
923
923
  },
924
924
  {
925
925
  _id: 3,
@@ -927,7 +927,7 @@ export default {
927
927
  cardNumber: "58474638474545",
928
928
  expMonth: "12",
929
929
  expYear: "28",
930
- tags: ["russonoro", "amex"],
930
+ tags: ["admin", "amex"],
931
931
  enabled: true
932
932
  },
933
933
  {
@@ -936,7 +936,7 @@ export default {
936
936
  cardNumber: "48474638474545",
937
937
  expMonth: "12",
938
938
  expYear: "28",
939
- tags: ["russonoro", "amex"]
939
+ tags: ["admin", "amex"]
940
940
  },
941
941
  {
942
942
  _id: 2,
@@ -944,7 +944,7 @@ export default {
944
944
  cardNumber: "38474638474545",
945
945
  expMonth: "12",
946
946
  expYear: "28",
947
- tags: ["russonoro", "amex"]
947
+ tags: ["admin", "amex"]
948
948
  },
949
949
  {
950
950
  _id: 3,
@@ -952,7 +952,7 @@ export default {
952
952
  cardNumber: "58474638474545",
953
953
  expMonth: "12",
954
954
  expYear: "28",
955
- tags: ["russonoro", "amex"],
955
+ tags: ["admin", "amex"],
956
956
  enabled: true
957
957
  },
958
958
  {
@@ -961,7 +961,7 @@ export default {
961
961
  cardNumber: "48474638474545",
962
962
  expMonth: "12",
963
963
  expYear: "28",
964
- tags: ["russonoro", "amex"]
964
+ tags: ["admin", "amex"]
965
965
  },
966
966
  {
967
967
  _id: 2,
@@ -969,7 +969,7 @@ export default {
969
969
  cardNumber: "38474638474545",
970
970
  expMonth: "12",
971
971
  expYear: "28",
972
- tags: ["russonoro", "amex"]
972
+ tags: ["admin", "amex"]
973
973
  },
974
974
  {
975
975
  _id: 3,
@@ -977,7 +977,7 @@ export default {
977
977
  cardNumber: "58474638474545",
978
978
  expMonth: "12",
979
979
  expYear: "28",
980
- tags: ["russonoro", "amex"],
980
+ tags: ["admin", "amex"],
981
981
  enabled: true
982
982
  },
983
983
  {
@@ -986,7 +986,7 @@ export default {
986
986
  cardNumber: "48474638474545",
987
987
  expMonth: "12",
988
988
  expYear: "28",
989
- tags: ["russonoro", "amex"]
989
+ tags: ["admin", "amex"]
990
990
  },
991
991
  {
992
992
  _id: 2,
@@ -994,7 +994,7 @@ export default {
994
994
  cardNumber: "38474638474545",
995
995
  expMonth: "12",
996
996
  expYear: "28",
997
- tags: ["russonoro", "amex"]
997
+ tags: ["admin", "amex"]
998
998
  },
999
999
  {
1000
1000
  _id: 3,
@@ -1002,7 +1002,7 @@ export default {
1002
1002
  cardNumber: "58474638474545",
1003
1003
  expMonth: "12",
1004
1004
  expYear: "28",
1005
- tags: ["russonoro", "amex"],
1005
+ tags: ["admin", "amex"],
1006
1006
  enabled: true
1007
1007
  },
1008
1008
  {
@@ -1011,7 +1011,7 @@ export default {
1011
1011
  cardNumber: "48474638474545",
1012
1012
  expMonth: "12",
1013
1013
  expYear: "28",
1014
- tags: ["russonoro", "amex"]
1014
+ tags: ["admin", "amex"]
1015
1015
  },
1016
1016
  {
1017
1017
  _id: 2,
@@ -1019,7 +1019,7 @@ export default {
1019
1019
  cardNumber: "38474638474545",
1020
1020
  expMonth: "12",
1021
1021
  expYear: "28",
1022
- tags: ["russonoro", "amex"]
1022
+ tags: ["admin", "amex"]
1023
1023
  },
1024
1024
  {
1025
1025
  _id: 3,
@@ -1027,7 +1027,7 @@ export default {
1027
1027
  cardNumber: "58474638474545",
1028
1028
  expMonth: "12",
1029
1029
  expYear: "28",
1030
- tags: ["russonoro", "amex"],
1030
+ tags: ["admin", "amex"],
1031
1031
  enabled: true
1032
1032
  }
1033
1033
  ]
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <div class="flex flex-col justify-center mt-20" v-once>
3
3
  <div class="mx-auto flex w-auto rounded-xl mb-8">
4
- <img src="@/assets/img/logo_trans.png" class="h-14 mr-4 z-30 object-cover" alt="Logo: Russonoro" />
4
+ <img src="@/assets/img/logo_trans.png" class="h-14 mr-4 z-30 object-cover" alt="Logo: Necro" />
5
5
  </div>
6
6
  <h2 class="text-3xl text-white text-center font-bold mb-4">Login</h2>
7
7
 
package/vue.config.js CHANGED
@@ -14,7 +14,7 @@ module.exports = {
14
14
  });
15
15
  },
16
16
  pwa: {
17
- name: 'Russonoro',
17
+ name: 'Necro Lab',
18
18
  themeColor: '#4DBA87',
19
19
  msTileColor: '#000000',
20
20
  appleMobileWebAppCapable: 'yes',