feat: add feature/bun-executable to branch selector

Add feature/bun-executable to the allowed branches list in the Version Channel selector, enabling users to switch to this branch from the settings UI.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Alex Newman <thedotmack@users.noreply.github.com>
This commit is contained in:
claude[bot]
2025-12-11 23:33:30 +00:00
parent d24d5dda04
commit f50a005cef
@@ -211,7 +211,7 @@ export class SettingsRoutes extends BaseRouteHandler {
}
// Validate branch name
const allowedBranches = ['main', 'beta/7.0'];
const allowedBranches = ['main', 'beta/7.0', 'feature/bun-executable'];
if (!allowedBranches.includes(branch)) {
res.status(400).json({
success: false,