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

« back to all changes in this revision

Viewing changes to lib/conf/apps.py

  • Committer: mattgiuca
  • Date: 2008-02-14 06:34:09 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:465
Added new app: userservice, which is an ajax service for user management
stuff. Currently tries (badly) to speak to usermgt for accepting the TOS
and creating the user's junk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
110
110
                    requireauth = False,
111
111
                    hashelp = False)
112
112
 
 
113
app_userservice = App(dir = "userservuce",
 
114
                    name = "User Management Service",
 
115
                    requireauth = True,
 
116
                    hashelp = False)
 
117
 
113
118
# Mapping URL names to apps
114
119
 
115
120
app_url = {
125
130
    "help" : app_help,
126
131
    "forum" : app_forum,
127
132
    "tos" : app_tos,
 
133
    "userservice" : app_userservice,
128
134
}
129
135
if enable_debuginfo:
130
136
    app_url["debuginfo"] = app_debuginfo