File tree 2 files changed +8
-1
lines changed
2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,8 @@ var Path = {
88
88
'Missing "' + paramName + '" parameter for path "' + pattern + '"'
89
89
) ;
90
90
91
- return URL . encode ( params [ paramName ] ) ;
91
+ // Preserve forward slashes.
92
+ return String ( params [ paramName ] ) . split ( '/' ) . map ( URL . encode ) . join ( '/' ) ;
92
93
} ) ;
93
94
} ,
94
95
Original file line number Diff line number Diff line change @@ -144,6 +144,12 @@ describe('Path.injectParams', function () {
144
144
expect ( Path . injectParams ( pattern , { id : 'one, two' } ) ) . toEqual ( 'comments/one%2C+two/edit' ) ;
145
145
} ) ;
146
146
} ) ;
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
+ } ) ;
147
153
} ) ;
148
154
} ) ;
149
155
You can’t perform that action at this time.
0 commit comments