An admin option to generate a group invite link (e.g. to include in a newsletter):
Created from the Invites admin page; the admin sets an expiry date at creation.
The link is multi-use — anyone who has it may register while it is unexpired and not revoked.
The registrant enters their own email (editable field), name, password, and accepts signup policies.
They must confirm their email (same hashed-token flow as open registration), but confirming skips the admin approval step — the account becomes active immediately after confirmation, without appearing in Pending Students.
Group links work regardless of the registration mode (invite-only sites can still run a newsletter campaign).
Links can be revoked from the Invites page like personal invites.
Implementation sketch
us_invites grows kind (personal/group) and expires_at columns; group invites store no email and are never marked accepted.
Registration flow (Auth\RegistrationPage) branches on invite kind: group → create the account pending with an email-confirmation token plus a marker meta so Auth\EmailConfirmationHandler auto-approves on confirmation instead of queueing for approval.
**From the 2026-07-22 user demo.**
## Wanted
An admin option to generate a **group invite link** (e.g. to include in a newsletter):
- Created from the **Invites** admin page; the admin **sets an expiry date** at creation.
- The link is multi-use — anyone who has it may register while it is unexpired and not revoked.
- The registrant enters their own email (editable field), name, password, and accepts signup policies.
- They **must confirm their email** (same hashed-token flow as open registration), but confirming **skips the admin approval step** — the account becomes active immediately after confirmation, without appearing in Pending Students.
- Group links work regardless of the registration mode (invite-only sites can still run a newsletter campaign).
- Links can be revoked from the Invites page like personal invites.
## Implementation sketch
- `us_invites` grows `kind` (`personal`/`group`) and `expires_at` columns; group invites store no email and are never marked `accepted`.
- Registration flow (`Auth\RegistrationPage`) branches on invite kind: group → create the account pending with an email-confirmation token plus a marker meta so `Auth\EmailConfirmationHandler` auto-approves on confirmation instead of queueing for approval.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
From the 2026-07-22 user demo.
Wanted
An admin option to generate a group invite link (e.g. to include in a newsletter):
Implementation sketch
us_invitesgrowskind(personal/group) andexpires_atcolumns; group invites store no email and are never markedaccepted.Auth\RegistrationPage) branches on invite kind: group → create the account pending with an email-confirmation token plus a marker meta soAuth\EmailConfirmationHandlerauto-approves on confirmation instead of queueing for approval.