Add frontend support for the new clientca type

The frontend is modified to filter certificates from selector lists
so only non-clientca certificate types can be set as server certificates.
This commit is contained in:
Will Rouesnel
2023-05-25 00:37:27 +10:00
parent c664e864ce
commit d5b3e53140
4 changed files with 34 additions and 3 deletions

View File

@ -263,7 +263,7 @@ module.exports = Mn.View.extend({
}
},
load: function (query, callback) {
App.Api.Nginx.Certificates.getAll()
App.Api.Nginx.Certificates.getAllServerCertificates()
.then(rows => {
callback(rows);
})