roles exportable importable

This commit is contained in:
Yuri Kuznetsov
2022-03-29 17:44:24 +03:00
parent 16b61d9484
commit 461034f9cc
4 changed files with 9 additions and 9 deletions
@@ -3,5 +3,7 @@
"layouts": false,
"tab": false,
"acl": false,
"customizable": false
"customizable": false,
"importable": true,
"exportFormatList": ["csv"]
}
@@ -3,5 +3,7 @@
"layouts": false,
"tab": false,
"acl": false,
"customizable": false
"customizable": false,
"importable": true,
"exportFormatList": ["csv"]
}
+1 -3
View File
@@ -26,12 +26,10 @@
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
************************************************************************/
Espo.define('views/portal-role/record/list', 'views/role/record/list', function (Dep) {
define('views/portal-role/record/list', 'views/role/record/list', function (Dep) {
return Dep.extend({
});
});
+2 -4
View File
@@ -26,7 +26,7 @@
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
************************************************************************/
Espo.define('views/role/record/list', 'views/record/list', function (Dep) {
define('views/role/record/list', 'views/record/list', function (Dep) {
return Dep.extend({
@@ -34,11 +34,9 @@ Espo.define('views/role/record/list', 'views/record/list', function (Dep) {
quickEditDisabled: true,
massActionList: ['remove'],
massActionList: ['remove', 'export'],
checkAllResultDisabled: true
});
});