/api/invite triggers sending a mail invite to the given user.

This commit is contained in:
2026-02-19 20:58:34 +01:00
parent 6b31c6023f
commit a47931f40e
7 changed files with 76 additions and 0 deletions

View File

@ -37,6 +37,8 @@ defmodule BeetRoundServerWeb.Router do
get "/biddings_of_round/:round_number", BiddingController, :biddings_of_round
get "/biddings_of_highest_round", BiddingController, :biddings_of_highest_round
post "/invite", UserController, :invite
resources "/users", UserController, except: [:new, :edit]
end