Fix user refresh to actually work

This commit is contained in:
2011-12-04 01:39:35 +00:00
parent 76c6df0fd2
commit 92814770c1
2 changed files with 8 additions and 5 deletions

View File

@@ -13,8 +13,8 @@ urlpatterns = patterns('',
(r'^profile/reset/service/(?P<serviceid>\d+)/$', views.service_reset),
(r'^profile/reset/service/(?P<serviceid>\d+)/(?P<accept>\d+)$', views.service_reset),
(r'^profile/apipassword/', views.set_apipasswd),
(r'^profile/refresh/', views.refresh_access),
(r'^profile/refresh/(?P<userid>\d+)/', views.refresh_access),
(r'^profile/refresh/$', views.refresh_access),
(r'^profile/refresh/(?P<userid>\d+)/$', views.refresh_access),
(r'^profile/change/password/$', password_change),
(r'^profile/change/email/$', views.email_change),
(r'^profile/change/primary/$', views.primarychar_change),