Skip to contents

If a user has access to a volume and session, this function returns the history of modifications to that session.

Usage

list_session_activity(session_id = 6256, vb = options::opt("vb"), rq = NULL)

Arguments

session_id

Selected session/slot number.

vb

Show verbose messages. (Defaults to FALSE, overwritable using option 'databraryr.vb' or environment variable 'R_DATABRARYR_VB')

rq

An httr2 request object. Defaults to NULL. To access the activity history on a volume a user has privileges on. Create a request (rq <- make_default_request()); login using make_login_client(rq = rq); then run list_session_activity(session_id = <YOUR_SESSION_ID>, rq = rq)

Value

A list with the activity history on a session/slot.

Examples

# \donttest{
if (FALSE) { # \dontrun{
# The following will only return output if the user has write privileges
# on the session.

list_session_activity(session_id = 6256, vb = FALSE)
} # }
# }