opal.tables_perm_delete: Delete a permission from any table of a project

View source: R/opal.datasource.R

opal.tables_perm_deleteR Documentation

Delete a permission from any table of a project

Description

Delete a permission that was applied on any table of a project. Silently returns when there is no such permission.

Usage

opal.tables_perm_delete(opal, project, subject, type = "user")

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.

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)

opalr documentation built on Oct. 6, 2023, 5:08 p.m.