X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/blobdiff_plain/bed614583a6d5b596dbc4a2be5367d0fb339bd16..874a30391973642d3ff350f977c1ac705644fbb0:/code/webcommon.py diff --git a/code/webcommon.py b/code/webcommon.py index e82f790..eaf533c 100644 --- a/code/webcommon.py +++ b/code/webcommon.py @@ -1,6 +1,7 @@ """Exceptions for the web interface.""" import time +from invirt import database from invirt.database import Machine, MachineAccess class MyException(Exception): @@ -44,7 +45,9 @@ class State(object): def getMachines(self): if self.isadmin: - return Machine.select() + return Machine.query().join('acl').select_by( + database.or_(MachineAccess.c.user == self.username, + Machine.c.adminable == True)) else: return Machine.query().join('acl').select_by(user=self.username)