-
Notifications
You must be signed in to change notification settings - Fork 8.6k
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
refactor: User UserCreationService
in self serve admin creation
#19200
base: create-usercreationservice-for-api
Are you sure you want to change the base?
refactor: User UserCreationService
in self serve admin creation
#19200
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
2 Skipped Deployments
|
const username = slugify(parsedQuery.data.username.trim()); | ||
const userEmail = parsedQuery.data.email_address.toLowerCase(); | ||
|
||
const hashedPassword = await hashPassword(parsedQuery.data.password); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Move these two calls to the UserCreationService
API_V1 @map("api_v1") | ||
API_V2 @map("api_v2") | ||
WEBAPP @map("webapp") | ||
SELF_SERVE_ADMIN @map("self_serve_admin") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should expand on the CreationSource
to pinpoint where watchlisted users are created
…usercreationservice
Graphite Automations"Add consumer team as reviewer" took an action on this PR • (02/10/25)1 reviewer was added to this PR based on Keith Williams's automation. |
…usercreationservice
Stacked on #19150
What does this PR do?
SELF_SERVE_ADMIN
to creation sourceUserCreationService
inapi/auth/setup
endpointMandatory Tasks (DO NOT REMOVE)
How should this be tested?