mirror of https://github.com/portainer/portainer
6 lines
189 B
TypeScript
6 lines
189 B
TypeScript
|
import { EnvironmentId } from '@/react/portainer/environments/types';
|
||
|
|
||
|
export function buildUrl(environmentId: EnvironmentId, path: string) {
|
||
|
return `/docker/${environmentId}/${path}`;
|
||
|
}
|