File size: 3,283 Bytes
cb43fbd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# Admin β€” Users and Invites

The **Users** tab in the Admin Panel lets you view all registered users, manage their accounts, and create invite links so new people can register without open registration.

<!-- TODO: screenshot: users table with invite form -->

![Users tab](assets/UsersAndInvites.png)

## User list

The user table shows every registered account with the following columns:

| Column | Description |
|--------|-------------|
| **User** | Avatar, username, and an always-visible presence dot (green = online, grey = offline) |
| **Email** | Account email address |
| **Role** | Badge showing `admin` or `user` |
| **Created** | Account creation date |
| **Last Login** | Date and time of most recent login |
| **Actions** | Edit and delete buttons |

Your own account row is highlighted. You cannot delete your own account.

## User actions

### Edit a user

Click the pencil icon on any row to open the edit form. You can change:

- **Username**
- **Email address**
- **Role** β€” toggle between `user` and `admin`
- **Password** β€” set a new password; must be at least 8 characters

Click **Save** to apply changes.

### Delete a user

Click the trash icon and confirm. Deletion is permanent. The user's account is removed from the database along with their data (cascade behavior is enforced at the database level).

You cannot delete your own account while logged in as that user.

## Creating a user directly

Click **Create User** (top-right of the Users tab) to create an account without an invite link. You set the username, email, password, and role at creation time.

## Invite links

Invite links let a specific number of people register themselves. This is useful when open registration is disabled.

![Invite links](assets/InviteLinkForm.png)

### Creating an invite

Click **Create Invite** (invite links section, below the user table). Configure:

- **Max uses** β€” how many times the link can be used before it expires: `1Γ—`, `2Γ—`, `3Γ—`, `4Γ—`, `5Γ—`, or `∞` (unlimited). Defaults to `1Γ—`.
- **Expiry** β€” how long the link remains valid: `1d`, `3d`, `7d`, `14d`, or `∞` (no expiry). Defaults to `7d`.

After creation the link is copied to your clipboard automatically. Share it with the intended recipient. The URL format is:

```
<APP_URL>/register?invite=<token>
```

### Invite list

Existing invites are listed below the creation button. Each row shows:

- The invite token (truncated, monospace)
- A status badge β€” `active`, `used up`, or `expired`
- **Usage** β€” `used / max` (or `used / ∞` for unlimited)
- **Expiry** date, if set
- **Created by** β€” the admin who generated the link
- A **copy link** button (only shown for active invites)
- A **delete** (revoke) button

Revoking an invite immediately invalidates it; anyone following the link after revocation will receive an error.

## Permissions

The **Users** tab also hosts the Permissions panel at the bottom, which controls what roles can perform which actions. See [Admin-Permissions](Admin-Permissions) for details.

## Related pages

- [Login-and-Registration](Login-and-Registration)
- [Invite-Links](Invite-Links)
- [Admin-Permissions](Admin-Permissions)
- [Two-Factor-Authentication](Two-Factor-Authentication)
- [Admin-Panel-Overview](Admin-Panel-Overview)