Fixed incorrect privileges value in Materialize View. Fixes #6781

This commit is contained in:
Nikhil Mohite 2021-09-22 18:46:43 +05:30 committed by Akshay Joshi
parent a1aa080956
commit 05ce3445b5

View File

@ -101,7 +101,7 @@ export default class MViewSchema extends BaseUISchema {
},
{
id: 'datacl', label: gettext('Privileges'), type: 'collection',
schema: this.getPrivilegeRoleSchema(['U']),
schema: this.getPrivilegeRoleSchema(['a', 'r', 'w', 'd', 'D', 'x', 't']),
uniqueCol : ['grantee'],
editable: false,
group: gettext('Security'), mode: ['edit', 'create'],