Skip to content
This repository has been archived by the owner on Feb 22, 2020. It is now read-only.

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rahit authored and lamby committed Sep 8, 2017
1 parent 0481179 commit c3d5ac7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interface/backend/api/urls.py
Expand Up @@ -21,8 +21,8 @@

urlpatterns = [
url(r'^', include(router.urls)),
url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')),
url(r'^images/available$', ImageAvailableApiView.as_view(), name='image-available'),
url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework'))
url(r'^candidates/(?P<candidate_id>\d+)/dismiss$', candidate_dismiss, name='candidate-dismiss'),
url(r'^candidates/(?P<candidate_id>\d+)/mark$', candidate_mark, name='candidate-mark'),
]

0 comments on commit c3d5ac7

Please sign in to comment.