Add or update a permission on the R service.

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

if (FALSE) {
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)
}