Browse Source

Updated doc

master
Maxime Wack 6 years ago
parent
commit
2d7a33feb8
4 changed files with 13 additions and 4 deletions
  1. +1
    -1
      man/add_header.Rd
  2. +4
    -1
      man/add_user.Rd
  3. +4
    -1
      man/add_user_roles.Rd
  4. +4
    -1
      man/add_users.Rd

+ 1
- 1
man/add_header.Rd View File

@@ -4,7 +4,7 @@
\alias{add_header}
\title{Add the header to the message}
\usage{
add_header(msg, username, password)
add_header(msg, username, password, domain = "")
}
\arguments{
\item{msg}{The XML message to add the header to}


+ 4
- 1
man/add_user.Rd View File

@@ -5,7 +5,8 @@
\title{Add an user}
\usage{
add_user(admin, pass, id, name, email, password,
url = "http://127.0.0.1:9090/i2b2/services/PMService/getServices")
url = "http://127.0.0.1:9090/i2b2/services/PMService/getServices",
domain = "")
}
\arguments{
\item{admin}{The username to connect with}
@@ -21,6 +22,8 @@ add_user(admin, pass, id, name, email, password,
\item{password}{The password for the new user}

\item{url}{The URL of the i2b2 cell to communicate with}

\item{domain}{The domain to act on}
}
\value{
The XML return message as an httr::content() object


+ 4
- 1
man/add_user_roles.Rd View File

@@ -5,7 +5,8 @@
\title{Add user roles}
\usage{
add_user_roles(admin, pass, id, project, roles,
url = "http://127.0.0.1:9090/i2b2/services/PMService/getServices")
url = "http://127.0.0.1:9090/i2b2/services/PMService/getServices",
domain = "")
}
\arguments{
\item{admin}{The username to connect with}
@@ -19,6 +20,8 @@ add_user_roles(admin, pass, id, project, roles,
\item{roles}{A character vector of roles to add}

\item{url}{The URL of the i2b2 cell to communicate with}

\item{domain}{The domain to act on}
}
\value{
The XML return message as an httr::content() object


+ 4
- 1
man/add_users.Rd View File

@@ -5,7 +5,8 @@
\title{Add multiple users}
\usage{
add_users(admin, pass, users,
url = "http://127.0.0.1:9090/i2b2/services/PMService/getServices")
url = "http://127.0.0.1:9090/i2b2/services/PMService/getServices",
domain = "")
}
\arguments{
\item{admin}{The username to connect with}
@@ -15,6 +16,8 @@ add_users(admin, pass, users,
\item{users}{The dataframe containing the users to add}

\item{url}{The URL of the i2b2 cell to communicate with}

\item{domain}{The domain to act on}
}
\value{
The XML return message as an httr::content() object


Loading…
Cancel
Save