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

« back to all changes in this revision

Viewing changes to ivle/conf/apps.py

Direct port of userservice to the new framework.

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
                    name = "Download",
45
45
                    requireauth = True,
46
46
                    hashelp = False)
47
 
app_userservice = App(dir = "userservice",
48
 
                    name = "User Management Service",
49
 
                    requireauth = False,
50
 
                    hashelp = False)
51
47
 
52
48
# Mapping URL names to apps
53
49
 
55
51
    "fileservice" : app_fileservice,
56
52
    "serve" : app_server,
57
53
    "download" : app_download,
58
 
    "userservice" : app_userservice,
59
54
}