You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 15, 2019. It is now read-only.
the setting KNOWLEDGE_SLUG_URLS = True causes that the url pattern: r'^questions/(?P<category_slug>[a-z0-9-_]+)/$' caches the the requests to view a question and maps to knowledge_list view
instead of r'^questions/(?P<question_id>\d+)/$' who matches to knowledge_thread_no_slug view
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
the setting
KNOWLEDGE_SLUG_URLS = True
causes that the url pattern:r'^questions/(?P<category_slug>[a-z0-9-_]+)/$'
caches the the requests to view a question and maps toknowledge_list
viewinstead of
r'^questions/(?P<question_id>\d+)/$'
who matches toknowledge_thread_no_slug
viewThe text was updated successfully, but these errors were encountered: