only admins can change rightslevel
This commit is contained in:
parent
717248bc73
commit
7acc562b53
2 changed files with 21 additions and 13 deletions
|
|
@ -362,7 +362,7 @@ def editUser(request, data):
|
|||
response = json_response(status=403, text='email already in use')
|
||||
return render_to_json_response(response)
|
||||
user.email = data['email']
|
||||
if 'level' in data:
|
||||
if 'level' in data and request.user.profile.get_level() == 'admin':
|
||||
profile.set_level(data['level'])
|
||||
if 'notes' in data:
|
||||
profile.notes = data['notes']
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue