Add team task tracker endpoints to public routes

Bot-to-bot endpoints don't have user tokens, so they need to
bypass auth middleware.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Mike 2026-03-23 19:04:15 +00:00
parent e3933ce0c8
commit d1630e69b2

View file

@ -516,6 +516,11 @@ const PUBLIC_ROUTES = [
'/api/tabs/pendingOrders.php', '/api/tabs/pendingOrders.php',
'/api/tabs/increaseAuth.php', '/api/tabs/increaseAuth.php',
'/api/tabs/cancel.php', '/api/tabs/cancel.php',
// team tasks (bot-to-bot, no user auth)
'/api/tasks/team/create.php',
'/api/tasks/team/update.php',
'/api/tasks/team/active.php',
'/api/tasks/team/list.php',
]; ];
/** /**