Revision 1ae97c83 snf-astakos-app/astakos/im/urls.py

b/snf-astakos-app/astakos/im/urls.py
62 62
        url(r'^local/reset/confirm/(?P<uidb36>[0-9A-Za-z]+)-(?P<token>.+)/$',
63 63
         'password_reset_confirm'),
64 64
        url(r'^local/password/reset/complete/$', 'password_reset_complete'),
65
        url(r'^password/?$', 'password_change', {'post_change_redirect':'profile'})
65
        url(r'^password/?$', 'password_change', {'post_change_redirect':'profile'}, name='password_change')
66 66
    )
67 67

  
68 68
if INVITATIONS_ENABLED:
......
82 82
    )
83 83

  
84 84
urlpatterns += patterns('astakos.im.api',
85
    url(r'^authenticate/?$', 'authenticate')
85
    url(r'^authenticate/?$', 'authenticate'),
86
    url(r'^get_services/?$', 'get_services'),
87
    url(r'^get_menu/?$', 'get_menu'),
86 88
)

Also available in: Unified diff