(
_username: str = Depends(require_dashboard_user),
service: CommandService = Depends(get_command_service),
)
| 147 | |
| 148 | @legacy_router.get("/commands/conflicts") |
| 149 | async def list_dashboard_command_conflicts( |
| 150 | _username: str = Depends(require_dashboard_user), |
| 151 | service: CommandService = Depends(get_command_service), |
| 152 | ): |
| 153 | return await _list_command_conflicts(service) |
| 154 | |
| 155 | |
| 156 | @legacy_router.post("/commands/toggle") |
nothing calls this directly
no test coverage detected