projects
/
invirt/packages/invirt-web.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Set machine_access to be a private attribute of machine, so the acl is
[invirt/packages/invirt-web.git]
/
code
/
cache_acls.py
diff --git
a/code/cache_acls.py
b/code/cache_acls.py
index
b18eabc
..
9f8d66a
100644
(file)
--- a/
code/cache_acls.py
+++ b/
code/cache_acls.py
@@
-46,7
+46,8
@@
def refreshMachine(m):
ma = [x for x in m.acl if x.user == removed][0]
ctx.current.delete(ma)
for p in people - old_people:
- ma = MachineAccess(machine_id=m.machine_id, user=p)
+ ma = MachineAccess(user=p)
+ m.acl.append(ma)
ctx.current.save(ma)
def refreshCache():