~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/admin/user.py

ivle.webapp.admin.user.Plugin: Use 'users' in the URL, not 'user'.

Show diffs side-by-side

added added

removed removed

Lines of Context:
72
72
    # (regex str, handler class, kwargs dict)
73
73
    # The kwargs dict is passed to the __init__ of the view object
74
74
    urls = [
75
 
        ('api/user/:login', UserRESTView)
 
75
        ('api/users/:login', UserRESTView)
76
76
    ]