Automatically add urls for users
It seems User urls are not generated automatically. I think it should be the case.
It seems User urls are not generated automatically. I think it should be the case.
pig @alexandre
The issue is :
More precisely, the file urls.py on packages is not automatically loaded.
Actually, we use this code on the server sources :
for package in settings.DJANGOLDP_PACKAGES:
try:
urlpatterns.append(url(r'^', include('{}.urls'.format(package))))
except ModuleNotFoundError:
pass
It may be move to djangoldp.urls.py
By Jean-Baptiste on 2019-04-16T08:22:51 (imported from GitLab project)
created merge request !10 (closed) to address this issue
By Jean-Baptiste on 2019-04-16T08:23:32 (imported from GitLab project)
mentioned in merge request !10 (closed)
By Jean-Baptiste on 2019-04-16T08:23:33 (imported from GitLab project)
moved to djangoldp#118 (closed)
By Jean-Baptiste on 2019-04-16T08:24:44 (imported from GitLab project)