mirror of
https://github.com/rustfs/console.git
synced 2026-09-21 06:06:37 +08:00
7 lines
196 B
JavaScript
7 lines
196 B
JavaScript
export function buildModuleBucketPath(route, bucketName) {
|
|
if (!bucketName) return route
|
|
|
|
const params = new URLSearchParams({ bucket: bucketName })
|
|
return `${route}?${params.toString()}`
|
|
}
|