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
Hello.
It seems like a little bug: if my application app_name includes a dot, e.g. forum.mongo_forum then the default mongonaut's urlconf can not handle the url: it can not reverse for 'document_list' with keyword arguments like 'app_name': 'forum.mongo_forum'.
The mongo_forum application is installed right into my project and accessed with an project name prefix.
To fix that you can add dot-symbol to mongonaut's urlconf:
(?P<app_label>[.-\w]+)
for all of your url patterns (document{list, detail, detail_edit_form, detail_add_form}, etc).
Thanks.
The text was updated successfully, but these errors were encountered:
Hello.
It seems like a little bug: if my application app_name includes a dot, e.g. forum.mongo_forum then the default mongonaut's urlconf can not handle the url: it can not reverse for 'document_list' with keyword arguments like 'app_name': 'forum.mongo_forum'.
The mongo_forum application is installed right into my project and accessed with an project name prefix.
To fix that you can add dot-symbol to mongonaut's urlconf:
(?P<app_label>[.-\w]+)
for all of your url patterns (document{list, detail, detail_edit_form, detail_add_form}, etc).
Thanks.
The text was updated successfully, but these errors were encountered: