We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 080ae7a commit 050001bCopy full SHA for 050001b
src/framework/base.path.ts
@@ -20,7 +20,7 @@ export class BasePath {
20
let urlPath = this.findUrlPath(server.url);
21
if (/{\w+}/.test(urlPath)) {
22
// has variable that we need to check out
23
- urlPath = urlPath.replace(/{(\w+)}/g, (substring, p1) => `:${p1}`);
+ urlPath = urlPath.replace(/{(\w+)}/g, (substring, p1) => `:${p1}(.*)`);
24
}
25
this.path = urlPath;
26
for (const variable in server.variables) {
0 commit comments