Skip to content

Commit

Permalink
Fix /user/ API to load profile for current user
Browse files Browse the repository at this point in the history
  • Loading branch information
ibacher committed Oct 20, 2020
1 parent ae75a6a commit 77b28cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/users/user_urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# shortcuts for the currently logged-in user
urlpatterns = [
re_path(
r'^$', views.UserDetailView.as_view(), name='user-self-detail'
r'^$', views.UserDetailView.as_view(), extra_kwargs, name='user-self-detail'
),
re_path(
r'^orgs/$', orgs_views.OrganizationListView.as_view(), extra_kwargs, name='user-organization-list'
Expand Down

0 comments on commit 77b28cf

Please sign in to comment.