-
Notifications
You must be signed in to change notification settings - Fork 436
feat: users csv import #1409
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: development
Are you sure you want to change the base?
feat: users csv import #1409
Conversation
1e1e33f
to
0152fae
Compare
0152fae
to
d91bb1d
Compare
78f3ede
to
dd9f733
Compare
4584717
to
257cf61
Compare
257485a
to
cff39c1
Compare
I've been slow on this one because I have a lot of this code in tabcmd and have been trying to validate against that. I'll make some progress on it soon! |
2afca74
to
164afe1
Compare
d8da103
to
7f9da2c
Compare
7f9da2c
to
5aa08cc
Compare
@jacalata Any thoughts on this? |
5aa08cc
to
80a38ff
Compare
Checking in on this PR |
eeb53a5
to
cfc4b1c
Compare
cfc4b1c
to
8ca55b3
Compare
8ca55b3
to
4826880
Compare
With #1601 merged, I have added IDP configuration support to the bulk add. |
This adds functionality to bulk add and bulk remove users. It has the TSC users pass in an
Iterable[UserItem]
, and creates the csv file formatted as specified by CSV guidelines.The previous version of
create_users_from_file
read a CSV file, and called the add endpoint for each one. This PR deprecates that endpoint in favor of directing users tobulk_add
.