-
Notifications
You must be signed in to change notification settings - Fork 689
feat: Add global chat for navigation #5820
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
Draft
claude
wants to merge
54
commits into
hc/ai-flow-chat
Choose a base branch
from
claude/issue-5819-20250527_085532
base: hc/ai-flow-chat
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Conversation
This file contains hidden or 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
Deploying windmill with
|
Latest commit: |
3ce1f89
|
Status: | ✅ Deploy successful! |
Preview URL: | https://d3db7c42.windmill.pages.dev |
Branch Preview URL: | https://claude-issue-5819-20250527-0.windmill.pages.dev |
ac2df4a
to
e906297
Compare
* chore(main): release 1.493.0 * Apply automatic changes --------- Co-authored-by: rubenfiszel <[email protected]>
* Allways use custom label for triggers * Add default path name for new schedule * Improve warning message * Add confirmation modal for deleting triggers
* chore(main): release 1.493.1 * Apply automatic changes --------- Co-authored-by: rubenfiszel <[email protected]>
* chore(main): release 1.493.2 * Apply automatic changes --------- 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]>
* small claude improv * simpler rules system * fix install command
* chore(main): release 1.493.3 * Apply automatic changes --------- Co-authored-by: rubenfiszel <[email protected]>
* chore(main): release 1.493.4 * Apply automatic changes --------- Co-authored-by: rubenfiszel <[email protected]>
e906297
to
3ce1f89
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Implements a GlobalChat component that opens in a drawer, accessible from the left sidebar menu as requested in issue #5819.
Changes Made
New Components
Integration Points
Features Implemented
Technical Implementation
The implementation follows Windmill's existing patterns:
Drawer
andDrawerContent
componentsTesting
The global chat can be accessed by clicking the "Global Chat" button in the left sidebar menu. It opens as a right-side drawer with placeholder functionality ready for future AI integration.
Fixes #5819
Generated with Claude Code