oadmin.system_perm_delete {opalr} | R Documentation |
Delete a System permission
Description
Delete a permission that was applied to the whole system. Silently returns when there is no such permission.
Usage
oadmin.system_perm_delete(opal, subject, type = "user")
Arguments
opal |
Opal connection object. |
subject |
A vector of subject identifiers: user names or group names (depending on the type). |
type |
The type of subject: user (default) or group. |
Examples
## Not run:
o <- opal.login('administrator','password', url='https://opal-demo.obiba.org')
oadmin.system_perm_add(o, c('andrei', 'valentina'), 'user', 'project_add')
oadmin.system_perm(o)
oadmin.system_perm_delete(o, c('andrei', 'valentina'), 'user')
opal.logout(o)
## End(Not run)
[Package opalr version 3.4.1 Index]