-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Add a guide for importing users from a csv file
- Loading branch information
zak39
committed
Dec 5, 2024
1 parent
422b833
commit b52d373
Showing
2 changed files
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
The .csv user import function lets you populate a Workspace with a large number of users in just one click. | ||
|
||
The expected file must be in .csv format, with commas as separators, UTF-8 encoding and CR, LF, CRLF carriage returns. | ||
|
||
It must contain two pieces of information per line: “user” and “role”. For users, the login or e-mail address (if unique) can be used. For roles, enter “u” or “user” to add a simple user and “wm” for a Workspace Manager. | ||
|
||
Here's a file that you can base upon to fill with the data corresponding to your instance : [users-import.csv](./users-import.csv) . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
user,role | ||
pierre.quiroul,user | ||
awang,wm | ||
radjiv.velasquez,u | ||
[email protected],wm | ||
[email protected],user |