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

« back to all changes in this revision

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

Move /users/:login/+settings to /~:login/+settings.

Show diffs side-by-side

added added

removed removed

Lines of Context:
94
94
    # (regex str, handler class, kwargs dict)
95
95
    # The kwargs dict is passed to the __init__ of the view object
96
96
    urls = [
97
 
        ('users/:login/+settings', UserSettingsView),
98
 
        ('api/users/:login', UserRESTView),
 
97
        ('~:login/+settings', UserSettingsView),
 
98
        ('api/~:login', UserRESTView),
99
99
    ]