package web import "net/http" // Test-only handles to the unexported invite handlers so the external web_test // package can mount them on an httptest mux (and get PathValue routing) without // standing up the full Router + auth stack. export_test.go compiles only under // `go test`, so these never widen the package's real API. func (a *App) HandleInviteFormForTest(w http.ResponseWriter, r *http.Request) { a.handleInviteForm(w, r) } func (a *App) HandleInviteSubmitForTest(w http.ResponseWriter, r *http.Request) { a.handleInviteSubmit(w, r) }