Skip to content

Commit

Permalink
Fix review apps for fellows (#1010)
Browse files Browse the repository at this point in the history
* Test commit

* Find out which url is it resolving to

* Fix stuff

* Remove debugging stuff
  • Loading branch information
gideonthomas authored and mmmavis committed Feb 15, 2018
1 parent 6f59bfa commit e531dbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions network-api/networkapi/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@

urlpatterns = list(filter(None, [
url(r'^admin/', include(admin.site.urls)),
url(r'^soc/', include('social_django.urls', namespace='social')),
url(r'^fellowships/', include('networkapi.fellows.urls'))
url(r'^soc/', include('social_django.urls', namespace='social'))
if settings.SOCIAL_SIGNIN else '',
url(r'^fellowships/', include('networkapi.fellows.urls')),
# network-api routes:
url(r'^api/people/', include('networkapi.people.urls')),
url(r'^api/news/', include('networkapi.news.urls')),
Expand Down

0 comments on commit e531dbe

Please sign in to comment.