Skip to content

Commit

Permalink
Merge pull request #2644 from pierre-24/change_url_api_membre
Browse files Browse the repository at this point in the history
Change "/api/membres/mon_profil/" en "/api/membres/mon-profil/"
  • Loading branch information
GerardPaligot committed May 8, 2015
2 parents 487c83d + c21b9e9 commit b7730db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zds/member/api/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

urlpatterns = patterns('',
url(r'^$', MemberListAPI.as_view(), name='api-member-list'),
url(r'^mon_profil/$', MemberMyDetailAPI.as_view(), name='api-member-profile'),
url(r'^mon-profil/$', MemberMyDetailAPI.as_view(), name='api-member-profile'),
url(r'^(?P<pk>[0-9]+)/$', MemberDetailAPI.as_view(), name='api-member-detail'),
url(r'^(?P<pk>[0-9]+)/lecture-seule/$', MemberDetailReadingOnly.as_view(),
name='api-member-read-only'),
Expand Down

0 comments on commit b7730db

Please sign in to comment.