Add or update a permission on any table of a project.

opal.tables_perm_add(opal, project, subject, type = "user", permission)

Arguments

opal

Opal connection object.

project

Project name where the table will be located.

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: view-values, add, or administrate.

Examples

if (FALSE) {
o <- opal.login('administrator','password', url='https://opal-demo.obiba.org')
opal.tables_perm_add(o, 'CNSIM', c('andrei', 'valentina'), 'user', 'administrate')
opal.tables_perm(o, 'CNSIM')
opal.tables_perm_delete(o, 'CNSIM', c('andrei', 'valentina'), 'user')
opal.logout(o)
}