Not all of the The ABCDatabase.grant_access and ABCDatabase.revoke_access method arguments appear to be required.
|
def grant_access(self, app_name, user_name, app_license, |
|
allow_home, allow_view, volume, allow_startup_data): |
|
def revoke_access(self, app_name, user_name, app_license, |
|
allow_home, allow_view, volume, allow_startup_data): |
In fact all of them except app_name and user_name could probably be made optional with given defaults, since our implementations already expect to handle falsy values anyway.
Not all of the The
ABCDatabase.grant_accessandABCDatabase.revoke_accessmethod arguments appear to be required.simphony-remote/remoteappmanager/db/interfaces.py
Lines 208 to 209 in 510430b
simphony-remote/remoteappmanager/db/interfaces.py
Lines 251 to 252 in 510430b
In fact all of them except
app_nameanduser_namecould probably be made optional with given defaults, since our implementations already expect to handle falsy values anyway.