Description Usage Arguments Examples
Assign a new role to an existing user permission. This function is useful when you want to change roles for an entity, e.g., from "writer" to "reader" or vice versa.
1 2 | gs_perm_edit(ss, email = NULL, perm_id = NULL, role = "reader",
commenter = FALSE, verbose = TRUE)
|
ss |
a registered Google spreadsheet, i.e. a |
email |
The email address or domain name for the entity. |
perm_id |
The ID for the permission. |
role |
The primary role for this user. Allowed values are "owner", "reader", and "writer". |
commenter |
logical; allow the user to comment? This is only effective if role = "reader". |
verbose |
logical; do you want informative messages? |
1 2 3 4 5 6 7 8 9 10 11 12 | ## Not run:
foo <- gs_new("foo")
gs_perm_ls(foo)
# Add anyone as a reader:
gs_perm_add(foo, type = "anyone", role = "reader")
gs_perm_ls(foo)
# Change anyone to a writer:
gs_perm_edit(foo, perm_id = "anyoneWithLink", role = "writer")
gs_perm_ls(foo)
gs_delete(foo)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.