oadmin.r_perm_add {opalr} | R Documentation |
Add or update a R permission
Description
Add or update a permission on the R service.
Usage
oadmin.r_perm_add(opal, subject, type = "user", permission = "use")
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. |
permission |
The permission to apply: use. |
Examples
## Not run:
o <- opal.login('administrator','password', url='https://opal-demo.obiba.org')
oadmin.r_perm_add(o, c('andrei', 'valentina'), 'user', 'use')
oadmin.r_perm(o)
oadmin.r_perm_delete(o, c('andrei', 'valentina'), 'user')
opal.logout(o)
## End(Not run)
[Package opalr version 3.4.1 Index]