Skip to content

Commit 616f8bf

Browse files
committed
[changed] Preserve forward slashes in URL params
This is helpful when using * to match fs-like paths.
1 parent 6c74c69 commit 616f8bf

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

modules/helpers/Path.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,8 @@ var Path = {
8888
'Missing "' + paramName + '" parameter for path "' + pattern + '"'
8989
);
9090

91-
return URL.encode(params[paramName]);
91+
// Preserve forward slashes.
92+
return String(params[paramName]).split('/').map(URL.encode).join('/');
9293
});
9394
},
9495

specs/Path.spec.js

+6
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,12 @@ describe('Path.injectParams', function () {
144144
expect(Path.injectParams(pattern, { id: 'one, two' })).toEqual('comments/one%2C+two/edit');
145145
});
146146
});
147+
148+
describe('and a param has a forward slash', function () {
149+
it('preserves the forward slash', function () {
150+
expect(Path.injectParams(pattern, { id: 'the/id' })).toEqual('comments/the/id/edit');
151+
});
152+
});
147153
});
148154
});
149155

0 commit comments

Comments
 (0)