@live-change/access-control-frontend 0.8.81 → 0.8.83
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.
|
@@ -104,9 +104,15 @@
|
|
|
104
104
|
|
|
105
105
|
function deleteAccess(access) {
|
|
106
106
|
console.log("DELETE ACCESS", access)
|
|
107
|
+
const name = access.identification && (
|
|
108
|
+
access.identification.name
|
|
109
|
+
|| ((access.identification.firstName && access.identification.lastName)
|
|
110
|
+
? access.identification.firstName + ' ' + access.identification.lastName
|
|
111
|
+
: access.identification.firstName)
|
|
112
|
+
) || 'Anonymous'
|
|
107
113
|
confirm.require({
|
|
108
114
|
target: event.currentTarget,
|
|
109
|
-
message: `Do you want to revoke user "${
|
|
115
|
+
message: `Do you want to revoke user "${name}" access?`,
|
|
110
116
|
icon: 'pi pi-info-circle',
|
|
111
117
|
acceptClass: 'p-button-danger',
|
|
112
118
|
accept: async () => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/access-control-frontend",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.83",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"memDev": "node server/start.js memDev --enableSessions --initScript ./init.js --dbAccess",
|
|
6
6
|
"localDevInit": "rm tmp.db; lcli localDev --enableSessions --initScript ./init.js",
|
|
@@ -21,22 +21,22 @@
|
|
|
21
21
|
},
|
|
22
22
|
"type": "module",
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@live-change/access-control-service": "^0.8.
|
|
25
|
-
"@live-change/cli": "^0.8.
|
|
26
|
-
"@live-change/dao": "^0.8.
|
|
27
|
-
"@live-change/dao-vue3": "^0.8.
|
|
28
|
-
"@live-change/dao-websocket": "^0.8.
|
|
29
|
-
"@live-change/db-admin": "^0.8.
|
|
30
|
-
"@live-change/framework": "^0.8.
|
|
31
|
-
"@live-change/frontend-base": "^0.8.
|
|
32
|
-
"@live-change/password-authentication-service": "^0.8.
|
|
33
|
-
"@live-change/secret-code-service": "^0.8.
|
|
34
|
-
"@live-change/secret-link-service": "^0.8.
|
|
35
|
-
"@live-change/session-service": "^0.8.
|
|
36
|
-
"@live-change/user-frontend": "^0.8.
|
|
37
|
-
"@live-change/user-service": "^0.8.
|
|
38
|
-
"@live-change/vue3-components": "^0.8.
|
|
39
|
-
"@live-change/vue3-ssr": "^0.8.
|
|
24
|
+
"@live-change/access-control-service": "^0.8.83",
|
|
25
|
+
"@live-change/cli": "^0.8.83",
|
|
26
|
+
"@live-change/dao": "^0.8.83",
|
|
27
|
+
"@live-change/dao-vue3": "^0.8.83",
|
|
28
|
+
"@live-change/dao-websocket": "^0.8.83",
|
|
29
|
+
"@live-change/db-admin": "^0.8.83",
|
|
30
|
+
"@live-change/framework": "^0.8.83",
|
|
31
|
+
"@live-change/frontend-base": "^0.8.83",
|
|
32
|
+
"@live-change/password-authentication-service": "^0.8.83",
|
|
33
|
+
"@live-change/secret-code-service": "^0.8.83",
|
|
34
|
+
"@live-change/secret-link-service": "^0.8.83",
|
|
35
|
+
"@live-change/session-service": "^0.8.83",
|
|
36
|
+
"@live-change/user-frontend": "^0.8.83",
|
|
37
|
+
"@live-change/user-service": "^0.8.83",
|
|
38
|
+
"@live-change/vue3-components": "^0.8.83",
|
|
39
|
+
"@live-change/vue3-ssr": "^0.8.83",
|
|
40
40
|
"@vueuse/core": "^10.11.0",
|
|
41
41
|
"codeceptjs-assert": "^0.0.5",
|
|
42
42
|
"compression": "^1.7.4",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"vue3-scroll-border": "0.1.6"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@live-change/codeceptjs-helper": "^0.8.
|
|
56
|
+
"@live-change/codeceptjs-helper": "^0.8.83",
|
|
57
57
|
"codeceptjs": "^3.6.5",
|
|
58
58
|
"generate-password": "1.7.1",
|
|
59
59
|
"playwright": "^1.41.2",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"author": "Michał Łaszczewski <michal@laszczewski.pl>",
|
|
65
65
|
"license": "BSD-3-Clause",
|
|
66
66
|
"description": "",
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "a3c85f0869b4c65c2bdd6f181bdfcbe2d6f2bde5"
|
|
68
68
|
}
|