mirror of https://github.com/apache/cloudstack.git
UI: Fix CKS cluster creation templates listing for non admins
This commit is contained in:
parent
97aa35a705
commit
7cf7f1f1b8
|
|
@ -565,9 +565,12 @@ export default {
|
|||
}
|
||||
})
|
||||
},
|
||||
isAdminOrDomainAdmin () {
|
||||
return ['Admin', 'DomainAdmin'].includes(this.$store.getters.userInfo.roletype)
|
||||
},
|
||||
fetchCksTemplates () {
|
||||
const params = {
|
||||
templatefilter: 'all',
|
||||
templatefilter: this.isAdminOrDomainAdmin() ? 'all' : 'self',
|
||||
forcks: true
|
||||
}
|
||||
this.templateLoading = true
|
||||
|
|
|
|||
Loading…
Reference in New Issue