Closed dchukhin closed 5 years ago
Note: this pull request depends on #20
This pull request changes the way we match pks in URLs from \d to [0-9], to be more specific that the pk must be an integer where each digit must be between 0 and 9. Also, we add a +, since pks can be more than 1 digit.
pk
\d
[0-9]
+
Note: this pull request depends on #20
This pull request changes the way we match
pk
s in URLs from\d
to[0-9]
, to be more specific that thepk
must be an integer where each digit must be between 0 and 9. Also, we add a+
, sincepk
s can be more than 1 digit.