Files
rustfs-console/lib/module-bucket-route.js
T

7 lines
196 B
JavaScript

export function buildModuleBucketPath(route, bucketName) {
if (!bucketName) return route
const params = new URLSearchParams({ bucket: bucketName })
return `${route}?${params.toString()}`
}