-
-
Notifications
You must be signed in to change notification settings - Fork 1
Feature Expand Collapse
teociaps edited this page Nov 27, 2025
·
2 revisions
Add controls to expand or collapse all operations within a tag group simultaneously.
- ✅ Reduced Clutter - Collapse all when not needed
- ✅ Quick Overview - Expand all to see everything
- ✅ Time Saver - No need to click each operation individually

using AspNetCore.Swagger.Themes;
app.UseSwaggerUI(Theme.Dark, options =>
{
options.EnableExpandOrCollapseAllOperations();
});using AspNetCore.Swagger.Themes;
app.UseSwaggerUi(Theme.Dark, settings =>
{
settings.EnableExpandOrCollapseAllOperations();
});Works with:
- ✅ All predefined themes
- ✅ Custom themes
- ✅ All other advanced features
- ✅ Theme Switcher
- Enable Other Features - Combine with other UI enhancements
- Explore All Features - See what else is available
🚀 Getting Started
✨ Features
📖 Migration Guides