Files
portainer--portainer/app/react/portainer/system/build-url.ts
T
2026-07-13 12:08:39 +08:00

10 lines
130 B
TypeScript

export function buildUrl(action?: string) {
let url = '/system';
if (action) {
url += `/${action}`;
}
return url;
}