@opengis/admin 0.1.38 → 0.1.39

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.
Files changed (103) hide show
  1. package/README.md +29 -29
  2. package/config.js +4 -4
  3. package/dist/{add-page-C5g2yN5N.js → add-page-CYAz9FdO.js} +1 -1
  4. package/dist/{admin-interface-zpEN5ODZ.js → admin-interface-BfY0EPQi.js} +1 -1
  5. package/dist/{admin-view-DD8_bEjC.js → admin-view-CcyuPjSQ.js} +2 -2
  6. package/dist/admin.js +1 -1
  7. package/dist/admin.umd.cjs +5 -5
  8. package/dist/{card-page-BpMHxKbw.js → card-page-DV3pe4fv.js} +21 -21
  9. package/dist/{card-view-Ddro0nc4.js → card-view-pwoN8ZHo.js} +1 -1
  10. package/dist/{edit-page-BL9SogVY.js → edit-page-PNY_GQBC.js} +1 -1
  11. package/dist/{import-file-DBSDU17c.js → import-file-aqrl_bc7.js} +20 -13
  12. package/dist/style.css +1 -1
  13. package/module/settings/card/admin.roles.table/access.hbs +27 -27
  14. package/module/settings/card/admin.roles.table/general_info.hbs +16 -16
  15. package/module/settings/card/admin.roles.table/index.yml +14 -14
  16. package/module/settings/card/admin.roles.table/users.hbs +27 -27
  17. package/module/settings/card/admin.routes.table/general_info.hbs +40 -40
  18. package/module/settings/card/admin.routes.table/index.yml +8 -8
  19. package/module/settings/card/admin.routes.table/users.hbs +33 -33
  20. package/module/settings/card/admin.users.table/general_info.hbs +25 -25
  21. package/module/settings/card/admin.users.table/index.yml +12 -12
  22. package/module/settings/card/admin.users.table/logs.hbs +30 -30
  23. package/module/settings/card/admin.users.table/user_roles.hbs +24 -24
  24. package/module/settings/cls/core.actions.json +13 -13
  25. package/module/settings/cls/core.scope.json +13 -13
  26. package/module/settings/cls/properties.site_status.json +13 -13
  27. package/module/settings/cls/properties.widget_status.json +13 -13
  28. package/module/settings/cls/users.user_type.json +13 -13
  29. package/module/settings/form/admin.access.form.json +36 -36
  30. package/module/settings/form/admin.properties.form.json +15 -15
  31. package/module/settings/form/admin.roles.form.json +19 -19
  32. package/module/settings/form/admin.routes.form.json +25 -25
  33. package/module/settings/form/admin.table_properties.form.json +70 -70
  34. package/module/settings/form/admin.user_properties.form.json +15 -15
  35. package/module/settings/form/admin.user_roles.form.json +21 -21
  36. package/module/settings/form/admin.users.form.json +150 -150
  37. package/module/settings/form/user.user_roles.form.json +13 -13
  38. package/module/settings/interface/admin.properties.json +4 -4
  39. package/module/settings/interface/admin.roles.json +4 -4
  40. package/module/settings/interface/admin.routes.json +4 -4
  41. package/module/settings/interface/admin.users.json +4 -4
  42. package/module/settings/menu.json +50 -50
  43. package/module/settings/select/core.roles.json +2 -2
  44. package/module/settings/select/core.user_uid.sql +1 -1
  45. package/module/settings/table/admin.access.table.json +77 -77
  46. package/module/settings/table/admin.properties.table.json +33 -33
  47. package/module/settings/table/admin.roles.table.json +58 -58
  48. package/module/settings/table/admin.routes.table.json +55 -55
  49. package/module/settings/table/admin.table_properties.table.json +81 -81
  50. package/module/settings/table/admin.user_properties.table.json +28 -28
  51. package/module/settings/table/admin.user_roles.table.json +66 -66
  52. package/module/settings/table/admin.users.table.json +119 -119
  53. package/package.json +74 -74
  54. package/plugin.js +101 -101
  55. package/server/helpers/controllers/badge.js +11 -11
  56. package/server/helpers/controllers/hb.js +2 -2
  57. package/server/helpers/controllers/map.js +2 -2
  58. package/server/helpers/controllers/mls.js +2 -2
  59. package/server/helpers/controllers/vue.js +2 -2
  60. package/server/helpers/index.mjs +13 -13
  61. package/server/plugins/docs.js +28 -28
  62. package/server/plugins/hook.js +166 -166
  63. package/server/plugins/vite.js +69 -69
  64. package/server/routes/data/controllers/cardData.js +56 -56
  65. package/server/routes/data/controllers/cardTabData.js +39 -39
  66. package/server/routes/data/controllers/funcs/getFilterSQL/index.js +85 -85
  67. package/server/routes/data/controllers/funcs/getFilterSQL/util/formatValue.js +145 -142
  68. package/server/routes/data/controllers/funcs/getFilterSQL/util/getCustomQuery.js +13 -13
  69. package/server/routes/data/controllers/funcs/getFilterSQL/util/getFilterQuery.js +67 -67
  70. package/server/routes/data/controllers/funcs/getFilterSQL/util/getOptimizedQuery.js +12 -12
  71. package/server/routes/data/controllers/funcs/getFilterSQL/util/getTableSql.js +34 -34
  72. package/server/routes/data/controllers/tableData.js +121 -121
  73. package/server/routes/data/controllers/tableDataId.js +27 -27
  74. package/server/routes/data/controllers/tableFilter.js +55 -55
  75. package/server/routes/data/controllers/utils/assignTokens.js +30 -30
  76. package/server/routes/data/controllers/utils/getColumns.js +21 -21
  77. package/server/routes/data/index.mjs +12 -12
  78. package/server/routes/menu/controllers/getMenu.js +33 -33
  79. package/server/routes/menu/index.mjs +5 -5
  80. package/server/routes/properties/controllers/admin.properties.get.js +29 -29
  81. package/server/routes/properties/controllers/user.properties.get.js +34 -34
  82. package/server/routes/properties/controllers/user.properties.post.js +30 -30
  83. package/server/routes/properties/funcs/getSettings.js +56 -56
  84. package/server/routes/properties/funcs/setSettings.js +44 -44
  85. package/server/routes/properties/funcs/utils/dataInsert.js +26 -26
  86. package/server/routes/properties/index.mjs +26 -26
  87. package/server/routes/root.mjs +3 -3
  88. package/server/routes/templates/controllers/getTemplate.js +14 -14
  89. package/server/routes/templates/index.mjs +14 -14
  90. package/server/templates/cls/itree.recrzone_category.json +73 -73
  91. package/server/templates/cls/test.json +9 -9
  92. package/server/templates/form/admin.user_cls.data.form.json +49 -49
  93. package/server/templates/form/admin.user_group_rel.form.json +21 -21
  94. package/server/templates/form/cp_building.form.json +32 -32
  95. package/server/templates/form/form-user-pass.json +10 -10
  96. package/server/templates/form/form-user_group.json +39 -39
  97. package/server/templates/form/form-users.json +156 -156
  98. package/server/templates/form/user_group_access.form.json +22 -22
  99. package/server/templates/select/account_id.json +2 -2
  100. package/server/templates/table/gis.dataset.table.json +43 -43
  101. package/server/templates/table/management.user_group.table.json +112 -112
  102. package/server/templates/table/management.users.table.json +126 -126
  103. package/utils.js +8 -8
@@ -1,26 +1,26 @@
1
- import getAdminProperties from './controllers/admin.properties.get.js';
2
- import postAdminProperties from './controllers/admin.properties.post.js';
3
-
4
- import getUserProperties from './controllers/user.properties.get.js';
5
- import postUserProperties from './controllers/user.properties.post.js';
6
-
7
- export default async function route(fastify) {
8
- fastify.get('/admin-properties/:key?', {}, getAdminProperties);
9
-
10
- fastify.route({
11
- method: 'POST',
12
- path: '/admin-properties',
13
- config: {
14
- policy: ['superadmin'],
15
- },
16
- handler: postAdminProperties,
17
- });
18
-
19
- fastify.get('/user-properties/:key?', {}, getUserProperties);
20
-
21
- fastify.route({
22
- method: 'POST',
23
- path: '/user-properties',
24
- handler: postUserProperties,
25
- });
26
- }
1
+ import getAdminProperties from './controllers/admin.properties.get.js';
2
+ import postAdminProperties from './controllers/admin.properties.post.js';
3
+
4
+ import getUserProperties from './controllers/user.properties.get.js';
5
+ import postUserProperties from './controllers/user.properties.post.js';
6
+
7
+ export default async function route(fastify) {
8
+ fastify.get('/admin-properties/:key?', {}, getAdminProperties);
9
+
10
+ fastify.route({
11
+ method: 'POST',
12
+ path: '/admin-properties',
13
+ config: {
14
+ policy: ['superadmin'],
15
+ },
16
+ handler: postAdminProperties,
17
+ });
18
+
19
+ fastify.get('/user-properties/:key?', {}, getUserProperties);
20
+
21
+ fastify.route({
22
+ method: 'POST',
23
+ path: '/user-properties',
24
+ handler: postUserProperties,
25
+ });
26
+ }
@@ -1,3 +1,3 @@
1
- export default async function (fastify, opts) {
2
- fastify.get(`/test`, () => { return { test: true } });
3
- }
1
+ export default async function (fastify, opts) {
2
+ fastify.get(`/test`, () => { return { test: true } });
3
+ }
@@ -1,15 +1,15 @@
1
- import { getTemplate } from "@opengis/fastify-table/utils.js";
2
-
3
- export default async function getTemplateApi({ funcs, params, session = {} }) {
4
- const { type, name } = params;
5
- const data = await getTemplate(type, name);
6
- if (!['interface', 'table'].includes(type)
7
- && (!data?.public || !data?.ispublic)
8
- && !funcs?.config?.auth?.disable
9
- && !session.passport?.user?.uid
10
- && false
11
- ) {
12
- return `access restricted ${name}`;
13
- }
14
- return data?.html || data || `template not found "${name}"`;
1
+ import { getTemplate } from "@opengis/fastify-table/utils.js";
2
+
3
+ export default async function getTemplateApi({ funcs, params, session = {} }) {
4
+ const { type, name } = params;
5
+ const data = await getTemplate(type, name);
6
+ if (!['interface', 'table'].includes(type)
7
+ && (!data?.public || !data?.ispublic)
8
+ && !funcs?.config?.auth?.disable
9
+ && !session.passport?.user?.uid
10
+ && false
11
+ ) {
12
+ return `access restricted ${name}`;
13
+ }
14
+ return data?.html || data || `template not found "${name}"`;
15
15
  }
@@ -1,14 +1,14 @@
1
- import getTemplateApi from './controllers/getTemplate.js';
2
-
3
- export default async function route(fastify) {
4
- //fastify.decorate('addTempateFolder', addTempateFolder); // call from funcs
5
- fastify.get(`/template/:type/:name`, getTemplateApi);
6
-
7
- /*fastify.addHook('onListen', async () => {
8
- await addTempateFolder(path.join(process.cwd(), '/module/itree'));
9
- await addTempateFolder(path.join(process.cwd(), '/module/test'));
10
- });*/
11
-
12
-
13
-
14
- }
1
+ import getTemplateApi from './controllers/getTemplate.js';
2
+
3
+ export default async function route(fastify) {
4
+ //fastify.decorate('addTempateFolder', addTempateFolder); // call from funcs
5
+ fastify.get(`/template/:type/:name`, getTemplateApi);
6
+
7
+ /*fastify.addHook('onListen', async () => {
8
+ await addTempateFolder(path.join(process.cwd(), '/module/itree'));
9
+ await addTempateFolder(path.join(process.cwd(), '/module/test'));
10
+ });*/
11
+
12
+
13
+
14
+ }
@@ -1,74 +1,74 @@
1
- [
2
- {
3
- "id": "12",
4
- "text": "Розділювальна смуга",
5
- "color": "#85754e",
6
- "en": "Dividing line"
7
- },
8
- {
9
- "id": "6",
10
- "text": "Бульвар",
11
- "color": "#00703c",
12
- "en": "Boulevard"
13
- },
14
- {
15
- "id": "1",
16
- "text": "Вуличні насадження",
17
- "color": "#8fbc8f",
18
- "en": "Street plantings"
19
- },
20
- {
21
- "id": "2",
22
- "text": "Парк",
23
- "color": "#a2cd5a",
24
- "en": "Park"
25
- },
26
- {
27
- "id": "3",
28
- "text": "Сад",
29
- "color": "#5e8c31",
30
- "en": "Garden"
31
- },
32
- {
33
- "id": "4",
34
- "text": "Сквер",
35
- "color": "#00ced1",
36
- "en": "Square"
37
- },
38
- {
39
- "id": "9",
40
- "text": "Рекреаційна зона",
41
- "color": "#e1a95f",
42
- "en": "Recreational zone"
43
- },
44
- {
45
- "id": "10",
46
- "text": "Санітарно-захисна зона",
47
- "color": "#6e7b8b",
48
- "en": "Sanitary protection zone"
49
- },
50
- {
51
- "id": "11",
52
- "text": "Зелені насадження прибудинкової території",
53
- "color": "#ace1af",
54
- "en": "Green plantations in local areas"
55
- },
56
- {
57
- "id": "5",
58
- "text": "Прибережні зелені насадження",
59
- "color": "#698b69",
60
- "en": "Coastal green plantations"
61
- },
62
- {
63
- "id": "7",
64
- "text": "Лісопарк",
65
- "color": "#6e8b3d",
66
- "en": "Forest park"
67
- },
68
- {
69
- "id": "8",
70
- "text": "Міський ліс",
71
- "color": "#4a5d23",
72
- "en": "Urban forest"
73
- }
1
+ [
2
+ {
3
+ "id": "12",
4
+ "text": "Розділювальна смуга",
5
+ "color": "#85754e",
6
+ "en": "Dividing line"
7
+ },
8
+ {
9
+ "id": "6",
10
+ "text": "Бульвар",
11
+ "color": "#00703c",
12
+ "en": "Boulevard"
13
+ },
14
+ {
15
+ "id": "1",
16
+ "text": "Вуличні насадження",
17
+ "color": "#8fbc8f",
18
+ "en": "Street plantings"
19
+ },
20
+ {
21
+ "id": "2",
22
+ "text": "Парк",
23
+ "color": "#a2cd5a",
24
+ "en": "Park"
25
+ },
26
+ {
27
+ "id": "3",
28
+ "text": "Сад",
29
+ "color": "#5e8c31",
30
+ "en": "Garden"
31
+ },
32
+ {
33
+ "id": "4",
34
+ "text": "Сквер",
35
+ "color": "#00ced1",
36
+ "en": "Square"
37
+ },
38
+ {
39
+ "id": "9",
40
+ "text": "Рекреаційна зона",
41
+ "color": "#e1a95f",
42
+ "en": "Recreational zone"
43
+ },
44
+ {
45
+ "id": "10",
46
+ "text": "Санітарно-захисна зона",
47
+ "color": "#6e7b8b",
48
+ "en": "Sanitary protection zone"
49
+ },
50
+ {
51
+ "id": "11",
52
+ "text": "Зелені насадження прибудинкової території",
53
+ "color": "#ace1af",
54
+ "en": "Green plantations in local areas"
55
+ },
56
+ {
57
+ "id": "5",
58
+ "text": "Прибережні зелені насадження",
59
+ "color": "#698b69",
60
+ "en": "Coastal green plantations"
61
+ },
62
+ {
63
+ "id": "7",
64
+ "text": "Лісопарк",
65
+ "color": "#6e8b3d",
66
+ "en": "Forest park"
67
+ },
68
+ {
69
+ "id": "8",
70
+ "text": "Міський ліс",
71
+ "color": "#4a5d23",
72
+ "en": "Urban forest"
73
+ }
74
74
  ]
@@ -1,10 +1,10 @@
1
- [
2
- {
3
- "id": 1,
4
- "text": "test"
5
- },
6
- {
7
- "id": 2,
8
- "text": "test2"
9
- }
1
+ [
2
+ {
3
+ "id": 1,
4
+ "text": "test"
5
+ },
6
+ {
7
+ "id": 2,
8
+ "text": "test2"
9
+ }
10
10
  ]
@@ -1,50 +1,50 @@
1
- {
2
- "label_style": "vertical",
3
- "schema": {
4
- "code": {
5
- "type": "Text",
6
- "ua": "Код",
7
- "ru": "Код",
8
- "en": "Code",
9
- "placeholder": {
10
- "ua": "Код",
11
- "ru": "Код",
12
- "en": "Code"
13
- },
14
- "validators": [
15
- "required"
16
- ],
17
- "col": 6
18
- },
19
- "name": {
20
- "type": "Text",
21
- "ua": "Назва",
22
- "ru": "Название",
23
- "en": "Name",
24
- "placeholder": {
25
- "ua": "Назва",
26
- "ru": "Название",
27
- "en": "Name"
28
- },
29
- "validators": [
30
- "required"
31
- ],
32
- "col": 6
33
- },
34
- "icon": {
35
- "type": "File",
36
- "multi": false,
37
- "ua": "Іконка",
38
- "ru": "Иконка",
39
- "en": "Icon",
40
- "col": 6
41
- },
42
- "color": {
43
- "type": "ColorPicker",
44
- "ua": "Колір",
45
- "ru": "Цвет",
46
- "en": "Color",
47
- "col": 6
48
- }
49
- }
1
+ {
2
+ "label_style": "vertical",
3
+ "schema": {
4
+ "code": {
5
+ "type": "Text",
6
+ "ua": "Код",
7
+ "ru": "Код",
8
+ "en": "Code",
9
+ "placeholder": {
10
+ "ua": "Код",
11
+ "ru": "Код",
12
+ "en": "Code"
13
+ },
14
+ "validators": [
15
+ "required"
16
+ ],
17
+ "col": 6
18
+ },
19
+ "name": {
20
+ "type": "Text",
21
+ "ua": "Назва",
22
+ "ru": "Название",
23
+ "en": "Name",
24
+ "placeholder": {
25
+ "ua": "Назва",
26
+ "ru": "Название",
27
+ "en": "Name"
28
+ },
29
+ "validators": [
30
+ "required"
31
+ ],
32
+ "col": 6
33
+ },
34
+ "icon": {
35
+ "type": "File",
36
+ "multi": false,
37
+ "ua": "Іконка",
38
+ "ru": "Иконка",
39
+ "en": "Icon",
40
+ "col": 6
41
+ },
42
+ "color": {
43
+ "type": "ColorPicker",
44
+ "ua": "Колір",
45
+ "ru": "Цвет",
46
+ "en": "Color",
47
+ "col": 6
48
+ }
49
+ }
50
50
  }
@@ -1,22 +1,22 @@
1
- {
2
- "schema": {
3
- "user_uid": {
4
- "type": "Autocomplete",
5
- "data": "user_id",
6
- "ua": "Користувач",
7
- "validators": [
8
- "required"
9
- ]
10
- },
11
- "user_access": {
12
- "type": "Select2",
13
- "data": "user_access",
14
- "placeholder": "Згідно налаштувань інтерфейсів",
15
- "ua": "Доступ"
16
- },
17
- "expiration": {
18
- "type": "DatePicker",
19
- "ua": "Закінчення терміну дії доступу до групи"
20
- }
21
- }
1
+ {
2
+ "schema": {
3
+ "user_uid": {
4
+ "type": "Autocomplete",
5
+ "data": "user_id",
6
+ "ua": "Користувач",
7
+ "validators": [
8
+ "required"
9
+ ]
10
+ },
11
+ "user_access": {
12
+ "type": "Select2",
13
+ "data": "user_access",
14
+ "placeholder": "Згідно налаштувань інтерфейсів",
15
+ "ua": "Доступ"
16
+ },
17
+ "expiration": {
18
+ "type": "DatePicker",
19
+ "ua": "Закінчення терміну дії доступу до групи"
20
+ }
21
+ }
22
22
  }
@@ -1,33 +1,33 @@
1
- {
2
- "schema": {
3
-
4
- "cp_umuni_id": {
5
- "type": "Text",
6
- "ua": "ID UMUNI"
7
- },
8
- "cp_year": {
9
- "type": "Text",
10
- "ua": "Рік будівництва"
11
- },
12
- "cp_date_en_audit": {
13
- "type": "DatePicker",
14
- "ua": "Дата проведення останнього енергоаудиту"
15
- },
16
- "cp_certificate": {
17
- "type": "Text",
18
- "ua": "Сертифікат енергоефективності будівлі",
19
- "help": "Вкажіть посилання"
20
- },
21
- "cp_pkd": {
22
- "type": "Autocomplete",
23
- "data": "customer_name",
24
- "add": {
25
- "model": "crm_acc.crm_account",
26
- "ua": "Додати",
27
- "form": "account_light.form"
28
- },
29
- "ua": "Замовник ПКД"
30
- }
31
- },
32
- "label_style": "vertical"
1
+ {
2
+ "schema": {
3
+
4
+ "cp_umuni_id": {
5
+ "type": "Text",
6
+ "ua": "ID UMUNI"
7
+ },
8
+ "cp_year": {
9
+ "type": "Text",
10
+ "ua": "Рік будівництва"
11
+ },
12
+ "cp_date_en_audit": {
13
+ "type": "DatePicker",
14
+ "ua": "Дата проведення останнього енергоаудиту"
15
+ },
16
+ "cp_certificate": {
17
+ "type": "Text",
18
+ "ua": "Сертифікат енергоефективності будівлі",
19
+ "help": "Вкажіть посилання"
20
+ },
21
+ "cp_pkd": {
22
+ "type": "Autocomplete",
23
+ "data": "customer_name",
24
+ "add": {
25
+ "model": "crm_acc.crm_account",
26
+ "ua": "Додати",
27
+ "form": "account_light.form"
28
+ },
29
+ "ua": "Замовник ПКД"
30
+ }
31
+ },
32
+ "label_style": "vertical"
33
33
  }
@@ -1,11 +1,11 @@
1
- {
2
- "login":{"type":"Text","ua":"Логін","ru":"Логин"},
3
- "password":{"type":"Password","ua":"Пароль","ru":"Пароль","validators": [
4
- {
5
- "type": "regexp",
6
- "regexp": "^.{8,}$",
7
- "flags": "gm",
8
- "message": "Пароль повинен бути більше 8 символів"
9
- }
10
- ]}
1
+ {
2
+ "login":{"type":"Text","ua":"Логін","ru":"Логин"},
3
+ "password":{"type":"Password","ua":"Пароль","ru":"Пароль","validators": [
4
+ {
5
+ "type": "regexp",
6
+ "regexp": "^.{8,}$",
7
+ "flags": "gm",
8
+ "message": "Пароль повинен бути більше 8 символів"
9
+ }
10
+ ]}
11
11
  }
@@ -1,40 +1,40 @@
1
- {
2
- "schema": {
3
- "group_name": {
4
- "type": "Text",
5
- "data": "customer_id",
6
- "ua": "Назва",
7
- "i": "Вноситься загальна назва групи доступу українською мовою",
8
- "ru": "Название"
9
- },
10
- "info": {
11
- "type": "Text",
12
- "ua": "Опис",
13
- "i": "Додається текстовий опис групи доступу, що буде збережений в системі",
14
- "ru": "Описание"
15
- },
16
- "license": {
17
- "type": "Select2",
18
- "data": "license",
19
- "ua": "Ліцензія",
20
- "ru": "Лицензия",
21
- "default": "0"
22
- },
23
- "product_code": {
24
- "type": "Select2",
25
- "data": "product_code",
26
- "ua": "Код продукту",
27
- "ru": "Код продукта",
28
- "default": "0"
29
- },
30
- "allow_ip": {
31
- "type": "Text",
32
- "ua": "IP адреси",
33
- "ru": "IP адреса"
34
- },
35
- "permission.edit_everything": {
36
- "type": "Switcher",
37
- "ua": "Редагувати не тільки власні записи"
38
- }
39
- }
1
+ {
2
+ "schema": {
3
+ "group_name": {
4
+ "type": "Text",
5
+ "data": "customer_id",
6
+ "ua": "Назва",
7
+ "i": "Вноситься загальна назва групи доступу українською мовою",
8
+ "ru": "Название"
9
+ },
10
+ "info": {
11
+ "type": "Text",
12
+ "ua": "Опис",
13
+ "i": "Додається текстовий опис групи доступу, що буде збережений в системі",
14
+ "ru": "Описание"
15
+ },
16
+ "license": {
17
+ "type": "Select2",
18
+ "data": "license",
19
+ "ua": "Ліцензія",
20
+ "ru": "Лицензия",
21
+ "default": "0"
22
+ },
23
+ "product_code": {
24
+ "type": "Select2",
25
+ "data": "product_code",
26
+ "ua": "Код продукту",
27
+ "ru": "Код продукта",
28
+ "default": "0"
29
+ },
30
+ "allow_ip": {
31
+ "type": "Text",
32
+ "ua": "IP адреси",
33
+ "ru": "IP адреса"
34
+ },
35
+ "permission.edit_everything": {
36
+ "type": "Switcher",
37
+ "ua": "Редагувати не тільки власні записи"
38
+ }
39
+ }
40
40
  }