]> git.proxmox.com Git - pve-docs.git/blob - api-viewer/PVEAPI.js
vzdump: drop overly scary & outdated warning about fleecing
[pve-docs.git] / api-viewer / PVEAPI.js
1 let method2cmd = {
2 GET: 'get',
3 POST: 'create',
4 PUT: 'set',
5 DELETE: 'delete'
6 };
7
8 function cliUsageRenderer(method, path) {
9 return `<tr><td>&nbsp;</td></td><tr><td>CLI:</td><td>pvesh ${method2cmd[method]} ${path}</td></tr></table>`;
10 }