aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorTom Christie2014-01-13 15:37:52 +0000
committerTom Christie2014-01-13 15:37:52 +0000
commit2911cd64ad67ba193e3d37322ee71692cb482623 (patch)
treeaa841354589e877453aa93c846542ac8d1f9cd1a /docs
parent4ab97843e8ebdb037110e09d9e2a7cd45e61a406 (diff)
downloaddjango-rest-framework-2911cd64ad67ba193e3d37322ee71692cb482623.tar.bz2
Minor tweaks to 'lookup_value_regex' work
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/2.4-accouncement.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/topics/2.4-accouncement.md b/docs/topics/2.4-accouncement.md
index 0cf50ce9..91472b9c 100644
--- a/docs/topics/2.4-accouncement.md
+++ b/docs/topics/2.4-accouncement.md
@@ -2,3 +2,4 @@
* List/detail routes.
* 1.3 Support dropped, install six for <=1.4.?.
* `allow_none` for char fields
+* `trailing_slash = True` --> `[^/]`, `trailing_slash = False` --> `[^/.]`, becomes simply `[^/]` and `lookup_value_regex` is added.