View source: R/opal.resource.R
opal.resources_perm_delete | R Documentation |
Delete a permission that was applied globally on the project's resources. Silently returns when there is no such permission.
opal.resources_perm_delete(opal, project, subject, type = "user")
opal |
Opal connection object. |
project |
The project name. |
subject |
A vector of subject identifiers: user names or group names (depending on the type). |
type |
The type of subject: user (default) or group. |
Other resource functions:
opal.resource()
,
opal.resource_create()
,
opal.resource_delete()
,
opal.resource_exists()
,
opal.resource_extension_create()
,
opal.resource_get()
,
opal.resource_perm()
,
opal.resource_perm_add()
,
opal.resource_perm_delete()
,
opal.resources()
,
opal.resources_perm()
,
opal.resources_perm_add()
## Not run:
o <- opal.login('administrator','password', url='https://opal-demo.obiba.org')
opal.resources_perm_add(o, 'CNSIM', 'CNSIM1', c('andrei', 'valentina'), 'user', 'view')
opal.resources_perm(o, 'CNSIM', 'CNSIM1')
opal.resources_perm_delete(o, 'CNSIM', 'CNSIM1', c('andrei', 'valentina'), 'user')
opal.logout(o)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.