mirror of
https://github.com/ansible/awx.git
synced 2024-11-02 09:51:09 +03:00
Merge pull request #1320 from jakemcdermott/use-copy-capability-field
use copy capability field for copy action
This commit is contained in:
commit
55ae23a2f4
@ -75,7 +75,7 @@ export default ['i18n', function(i18n) {
|
||||
"class": 'btn-danger btn-xs',
|
||||
awToolTip: i18n._('Copy credential'),
|
||||
dataPlacement: 'top',
|
||||
ngShow: 'credential.summary_fields.user_capabilities.edit'
|
||||
ngShow: 'credential.summary_fields.user_capabilities.copy'
|
||||
},
|
||||
view: {
|
||||
ngClick: "editCredential(credential.id)",
|
||||
|
@ -113,7 +113,7 @@ export default ['i18n', function(i18n) {
|
||||
"class": 'btn-danger btn-xs',
|
||||
awToolTip: i18n._('Copy inventory'),
|
||||
dataPlacement: 'top',
|
||||
ngShow: '!inventory.pending_deletion && inventory.summary_fields.user_capabilities.edit'
|
||||
ngShow: '!inventory.pending_deletion && inventory.summary_fields.user_capabilities.copy'
|
||||
},
|
||||
view: {
|
||||
label: i18n._('View'),
|
||||
|
@ -63,7 +63,7 @@ export default ['i18n', function(i18n){
|
||||
"class": 'btn-danger btn-xs',
|
||||
awToolTip: i18n._('Copy inventory script'),
|
||||
dataPlacement: 'top',
|
||||
ngShow: 'inventory_script.summary_fields.user_capabilities.edit'
|
||||
ngShow: 'inventory_script.summary_fields.user_capabilities.copy'
|
||||
},
|
||||
view: {
|
||||
ngClick: "editCustomInv(inventory_script.id)",
|
||||
|
@ -83,7 +83,7 @@ export default ['i18n', function(i18n){
|
||||
"class": 'btn-danger btn-xs',
|
||||
awToolTip: i18n._('Copy notification'),
|
||||
dataPlacement: 'top',
|
||||
ngShow: 'notification_template.summary_fields.user_capabilities.edit'
|
||||
ngShow: 'notification_template.summary_fields.user_capabilities.copy'
|
||||
},
|
||||
view: {
|
||||
ngClick: "editNotification(notification_template.id)",
|
||||
|
@ -106,7 +106,7 @@ export default ['i18n', function(i18n) {
|
||||
"class": 'btn-danger btn-xs',
|
||||
awToolTip: i18n._('Copy project'),
|
||||
dataPlacement: 'top',
|
||||
ngShow: 'project.summary_fields.user_capabilities.edit'
|
||||
ngShow: 'project.summary_fields.user_capabilities.copy'
|
||||
},
|
||||
edit: {
|
||||
ngClick: "editProject(project.id)",
|
||||
|
Loading…
Reference in New Issue
Block a user