Merge pull request 'add public join form' (#466) from feature/308-web-form into main
All checks were successful
continuous-integration/drone/push Build is passing

Reviewed-on: #466
This commit is contained in:
simon 2026-03-10 23:08:26 +01:00
commit f79c9ac515
26 changed files with 795 additions and 12 deletions

View file

@ -204,6 +204,12 @@ defmodule MvWeb.Plugs.CheckPagePermissionTest do
refute conn.halted
end
test "unauthenticated user can access /join (public join page, no redirect)" do
conn = conn_without_user("/join") |> CheckPagePermission.call([])
refute conn.halted
end
end
describe "error handling" do