opal.tables_perm {opalr} | R Documentation |
Get the permissions on any table of a project
Description
Get the permissions that were applied on any table of a project.
Usage
opal.tables_perm(opal, project)
Arguments
opal |
Opal connection object. |
project |
Project name. |
Value
A data.frame with columns: subject, type, permission
Examples
## Not run:
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)
## End(Not run)
[Package opalr version 3.4.1 Index]