feat(permission-catalog): re-order actions

This commit is contained in:
Ali BARIN
2025-04-09 13:59:28 +00:00
parent 6c0a5aad76
commit 80a54bc444

View File

@@ -21,16 +21,16 @@ const permissionCatalog = {
}, },
], ],
actions: [ actions: [
{
label: 'Manage',
key: 'manage',
subjects: [Connection.key, Flow.key],
},
{ {
label: 'Read', label: 'Read',
key: 'read', key: 'read',
subjects: [Connection.key, Execution.key, Flow.key], subjects: [Connection.key, Execution.key, Flow.key],
}, },
{
label: 'Manage',
key: 'manage',
subjects: [Connection.key, Flow.key],
},
], ],
subjects: [Connection, Flow, Execution], subjects: [Connection, Flow, Execution],
}; };