Automatically add a newly created feed generator to the feed management page as an active feed
Summary
When a user creates a new feed generator, it should automatically be added to their feed management page as an active feed. Currently, users must manually add newly created generators to their feed management page.
Current Behavior
- User creates a new feed generator (via AI assistant or manually)
- User must navigate to the feed-management page
- User clicks the "ADD GENERATOR" button
- User selects the generator they just created from a list
- Generator is now active in their feed
Desired Behavior
- User creates a new feed generator
- Generator is automatically added to their feed management page as an active feed
- User can immediately see events from the new generator in their feed
Benefits
- Reduces friction in the feed generator workflow
- Eliminates manual steps after generator creation
- Provides immediate feedback that the generator is working
- Improves overall user experience
Implementation Notes
- When
saveFeedGenerator(or similar) is called successfully, also call the function that adds the generator to the user's active feeds - Consider adding a checkbox option "Add to my active feeds" (checked by default) if user control is desired
- Ensure proper error handling if auto-add fails (generator should still be saved)