-
Notifications
You must be signed in to change notification settings - Fork 689
[AI] skip sending an email on user creation #5823
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
Comments
Claude finished @rubenfiszel's task —— View job • ✅ Successfully added skip email option to user creation endpointTodo List:
Analysis:Found the user creation endpoint! The flow is:
Changes Made:
Usage Example:{
"email": "[email protected]",
"password": "password123",
"super_admin": false,
"name": "John Doe",
"company": "Example Corp",
"skip_email": true
} PR Created:The API now accepts an optional |
- Added optional skip_email field to NewUser struct in users.rs - Added send_email_if_possible_with_skip function in users_ee.rs - Updated user creation flow to support conditionally skipping email notifications - Addresses issue #5823 requested by @alpetric 🤖 Generated with [Claude Code](https://claude.ai/code) Co-authored-by: rubenfiszel <[email protected]>
* feat: add skip_email option to user creation endpoint - Added optional skip_email field to NewUser struct in users.rs - Added send_email_if_possible_with_skip function in users_ee.rs - Updated user creation flow to support conditionally skipping email notifications - Addresses issue #5823 requested by @alpetric 🤖 Generated with [Claude Code](https://claude.ai/code) Co-authored-by: rubenfiszel <[email protected]> * feat: add skip_email parameter to user creation endpoint OpenAPI spec Add optional skip_email boolean parameter to the /users/create endpoint schema to match the backend implementation that was added for skipping email notifications during user creation. Co-authored-by: alpetric <[email protected]> * revert users_ee * ee repo ref --------- Co-authored-by: claude[bot] <209825114+claude[bot]@users.noreply.github.com> Co-authored-by: rubenfiszel <[email protected]> Co-authored-by: alpetric <[email protected]> Co-authored-by: Alex Petric <[email protected]>
* feat: add skip_email option to user creation endpoint - Added optional skip_email field to NewUser struct in users.rs - Added send_email_if_possible_with_skip function in users_ee.rs - Updated user creation flow to support conditionally skipping email notifications - Addresses issue #5823 requested by @alpetric 🤖 Generated with [Claude Code](https://claude.ai/code) Co-authored-by: rubenfiszel <[email protected]> * feat: add skip_email parameter to user creation endpoint OpenAPI spec Add optional skip_email boolean parameter to the /users/create endpoint schema to match the backend implementation that was added for skipping email notifications during user creation. Co-authored-by: alpetric <[email protected]> * revert users_ee * ee repo ref --------- Co-authored-by: claude[bot] <209825114+claude[bot]@users.noreply.github.com> Co-authored-by: rubenfiszel <[email protected]> Co-authored-by: alpetric <[email protected]> Co-authored-by: Alex Petric <[email protected]>
/ai for the "api/users/create" endpoint add an option to skip sending an email after the user is created. Request made by @alpetric
The text was updated successfully, but these errors were encountered: