API can serve bidding_of_highest_round and biddings_of_round/:round_number route.

This commit is contained in:
2026-02-13 21:01:07 +01:00
parent ebdb919245
commit 1c02f28d25
3 changed files with 38 additions and 1 deletions

View File

@ -33,8 +33,11 @@ defmodule BeetRoundServerWeb.Router do
get "/bidding_rounds/start_new", BiddingRoundController, :start_new
get "/bidding_rounds/restart", BiddingRoundController, :restart
get "/bidding_rounds/stop", BiddingRoundController, :stop
get "/biddings_of_round/:round_number", BiddingController, :biddings_of_round
get "/biddings_of_highest_round", BiddingController, :biddings_of_highest_round
resources "/users", UserController, except: [:new, :edit]
resources "/biddings", BiddingController, except: [:new, :edit]
end
# Enable LiveDashboard and Swoosh mailbox preview in development