We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a8a260 commit 7832509Copy full SHA for 7832509
1 file changed
ui/scripts/domains.js
@@ -285,7 +285,8 @@
285
});
286
287
args.response.success({
288
- data: domainObj
+ data: domainObj,
289
+ actionFilter: domainActionfilter
290
291
}
292
@@ -330,7 +331,7 @@
330
331
var jsonObj = args.context.item;
332
var allowedActions = [];
333
if(isAdmin()) {
- allowedActions.push("add");
334
+ allowedActions.push("create");
335
if(jsonObj.id != 1) { //"ROOT" domain is not allowed to edit or delete
336
allowedActions.push("edit"); //merge updateResourceCount into edit
337
allowedActions.push("delete");
0 commit comments