@opengis/admin 0.2.117 → 0.2.118

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opengis/admin",
3
- "version": "0.2.117",
3
+ "version": "0.2.118",
4
4
  "description": "This project Softpro Admin",
5
5
  "main": "dist/admin.js",
6
6
  "type": "module",
@@ -48,7 +48,7 @@
48
48
  "@fullcalendar/vue3": "^6.1.15",
49
49
  "@opengis/fastify-auth": "^1.0.70",
50
50
  "@opengis/fastify-file": "^1.0.42",
51
- "@opengis/fastify-table": "^1.2.5",
51
+ "@opengis/fastify-table": "^1.2.6",
52
52
  "@opengis/v3-core": "^0.3.45",
53
53
  "@opengis/v3-filter": "^0.0.68",
54
54
  "@tabler/icons-vue": "^3.28.1",
@@ -36,7 +36,7 @@ export default async function adminMenu({ user = {}, session, pg = pgClients.cli
36
36
 
37
37
  // update user access
38
38
 
39
- if (session && user?.uid && !config.local && !config.admin && ![user.user_type, user.type].includes('admin') && pg.pk['admin.role_access']) {
39
+ if (session && user?.uid && !config.local && !config.admin && !user.user_type?.includes?.('admin') && !user.type?.includes?.('admin') && pg.pk['admin.role_access']) {
40
40
  const { type, gl = [], routes = [] } = await pg.query(`select user_type as type, b.gl,routes from admin.users a
41
41
  left join lateral ( select array_agg(role_id) as gl from admin.user_roles where user_uid=a.uid)b on 1=1
42
42
  left join lateral ( select array_agg(route_id) as routes from admin.role_access where role_id=any(b.gl))r on 1=1