Fixed issue with matching wild card

This commit is contained in:
2026-07-10 00:13:40 -04:00
parent 655aeb47a2
commit 56c2fb1a5c
6 changed files with 62 additions and 2 deletions
+7
View File
@@ -35,6 +35,12 @@ app.host = (function(app){
});
}
function clearCache(callack){
app.api.delete('host/cache', function(error, data){
callack(error, data);
});
}
return {
getCert,
list: list,
@@ -42,5 +48,6 @@ app.host = (function(app){
add: add,
edit: edit,
remove: remove,
clearCache: clearCache,
}
})(app);