Users

# ICDataServer.newuserFunction.

newuser(dsn, username, name; email="", phone="", office="")

This function creates a new user in the users table of the database. E-mail, phone, office are useful for contacting users about their measurements.

source

# ICDataServer.updateuserFunction.

updateuser(dsn, username; kwargs...)

Update an existing user in the users table, identified by username. Specify the fields to update with keyword arguments specified in ICDataServer.newuser.

source

# ICDataServer.deleteuserFunction.

deleteuser(dsn, username)

Delete a user from the users table by providing the username.

source

# ICDataServer.listusersFunction.

listusers(dsn)

List all users in the users table.

source