Add link to sudo powers

This commit is contained in:
Eli Ribble 2026-02-18 07:35:51 +00:00
parent ec8b7b7db9
commit 9f20eda00d
No known key found for this signature in database
5 changed files with 20 additions and 1 deletions

View file

@ -85,5 +85,6 @@ type User struct {
Initials string
Notifications []notification.Notification
Organization Organization
Role string
Username string
}

View file

@ -106,6 +106,7 @@ func contentForUser(ctx context.Context, user *models.User) (User, error) {
Initials: extractInitials(user.DisplayName),
Notifications: notifications,
Organization: organization,
Role: user.Role.String(),
Username: user.Username,
}, nil