From bc0b2364b1a22ecc9662ddfce1a4bd314f38f79b Mon Sep 17 00:00:00 2001 From: Leif Johansson Date: Tue, 20 Sep 2011 11:01:05 +0200 Subject: removed entity model, celery --- coip/urls.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'coip/urls.py') diff --git a/coip/urls.py b/coip/urls.py index 13c422f..29ad522 100644 --- a/coip/urls.py +++ b/coip/urls.py @@ -26,10 +26,13 @@ urlpatterns = patterns('', # Profiles and user information #(r'^user/merge/(?P.+)$', 'coip.apps.userprofile.views.merge'), #(r'^user/merge$', 'coip.apps.userprofile.views.merge'), - (r'^user/home$', 'coip.apps.userprofile.views.home'), - (r'^user/(.+)/groups.json$', 'coip.apps.name.views.user_groups'), - (r'^user/search.json$', 'coip.apps.userprofile.views.search'), - (r'^user/info/(.+).json$', 'coip.apps.userprofile.views.info'), + (r'^user/home$', 'coip.apps.userprofile.views.home'), + (r'^user/alias$', 'coip.apps.userprofile.views.add_alias'), + (r'^user/alias/sshkey$', 'coip.apps.userprofile.views.add_sshkey'), + (r'^user/alias/cert$', 'coip.apps.userprofile.views.add_cert'), + (r'^user/(.+)/groups.json$', 'coip.apps.name.views.user_groups'), + (r'^user/search.json$', 'coip.apps.userprofile.views.search'), + (r'^user/info/(.+).json$', 'coip.apps.userprofile.views.info'), # Invitations (r'^name/(?P[0-9]+)/invite$', 'coip.apps.invitation.views.invite'), (r'^invitation/(?P[0-9]+)/cancel$', 'coip.apps.invitation.views.cancel'), -- cgit v1.1