mirror of
https://github.com/kakwa/ldapcherry
synced 2024-11-25 10:44:30 +01:00
adding notification on addes user
This commit is contained in:
parent
34d7e23cd2
commit
fce2f89103
@ -458,6 +458,11 @@ class LdapCherry(object):
|
|||||||
self._check_auth(must_admin=True)
|
self._check_auth(must_admin=True)
|
||||||
is_admin = self._check_admin()
|
is_admin = self._check_admin()
|
||||||
|
|
||||||
|
if cherrypy.request.method.upper() == 'POST':
|
||||||
|
notification = "<script type=\"text/javascript\">$.notify('User Added')</script>"
|
||||||
|
else:
|
||||||
|
notification = ''
|
||||||
|
|
||||||
graph={}
|
graph={}
|
||||||
for r in self.roles.graph:
|
for r in self.roles.graph:
|
||||||
s = list(self.roles.graph[r]['sub_roles'])
|
s = list(self.roles.graph[r]['sub_roles'])
|
||||||
@ -470,7 +475,7 @@ class LdapCherry(object):
|
|||||||
roles_js = json.dumps(display_names, separators=(',',':'))
|
roles_js = json.dumps(display_names, separators=(',',':'))
|
||||||
form = self.temp_form.render(attributes=self.attributes.attributes, values=None)
|
form = self.temp_form.render(attributes=self.attributes.attributes, values=None)
|
||||||
roles = self.temp_roles.render(roles=self.roles.flatten, graph=self.roles.graph, graph_js=graph_js, roles_js=roles_js)
|
roles = self.temp_roles.render(roles=self.roles.flatten, graph=self.roles.graph, graph_js=graph_js, roles_js=roles_js)
|
||||||
return self.temp_adduser.render(form=form, roles=roles, is_admin=is_admin)
|
return self.temp_adduser.render(form=form, roles=roles, is_admin=is_admin, notification=notification)
|
||||||
|
|
||||||
@cherrypy.expose
|
@cherrypy.expose
|
||||||
def delete(self, **params):
|
def delete(self, **params):
|
||||||
|
Loading…
Reference in New Issue
Block a user