Learn R Programming

opalr (version 3.3.1)

dsadmin.perm_delete: Delete a DataSHIELD permission

Description

Delete a permission that was applied to the DataSHIELD service. Silently returns when there is no such permission.

Usage

dsadmin.perm_delete(opal, subject, type = "user")

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.

Examples

Run this code
if (FALSE) {
o <- opal.login('administrator','password', url='https://opal-demo.obiba.org')
dsadmin.perm_add(o, c('andrei', 'valentina'), 'user', 'use')
dsadmin.perm(o)
dsadmin.perm_delete(o, c('andrei', 'valentina'), 'user')
opal.logout(o)
}

Run the code above in your browser using DataLab