diff --git a/CHANGELOG.md b/CHANGELOG.md
index 544b5616..2ee4b4c7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -13,6 +13,7 @@ and this project adheres to
- ✨(summary) report exception type in failure analytics
- ✨(frontend) add configurable documentation menu item
- ✨(frontend) allow promoting authenticated participants
+- ✨(frontend) introduce an "unauthenticated" participant badge
### Changed
diff --git a/src/frontend/src/features/participants/components/ParticipantRow.tsx b/src/frontend/src/features/participants/components/ParticipantRow.tsx
index f3aee30a..1b9e0198 100644
--- a/src/frontend/src/features/participants/components/ParticipantRow.tsx
+++ b/src/frontend/src/features/participants/components/ParticipantRow.tsx
@@ -24,6 +24,7 @@ import { useMuteParticipant } from '@/features/rooms/api/muteParticipant'
import { useCanMute } from '@/features/rooms/livekit/hooks/useCanMute'
import { ParticipantMenuButton } from './menu/ParticipantMenuButton'
import { PinBadge } from './PinBadge'
+import { UnauthenticatedBadge } from './UnauthenticatedBadge'
import { MuteAlertDialog } from '@/features/rooms/livekit/components/MuteAlertDialog'
type MicIndicatorProps = {
@@ -118,6 +119,7 @@ export const ParticipantRow = ({ participant }: ParticipantListItemProps) => {
>
+
{
+ const { t } = useTranslation('rooms', {
+ keyPrefix: 'participants.unauthenticated',
+ })
+ const is_authenticated = useParticipantAttribute('is_authenticated', {
+ participant,
+ })
+
+ if (is_authenticated == 'true') return
+
+ return (
+
+
+
+
+
+ )
+}
diff --git a/src/frontend/src/locales/de/rooms.json b/src/frontend/src/locales/de/rooms.json
index 37feffa1..73a137bc 100644
--- a/src/frontend/src/locales/de/rooms.json
+++ b/src/frontend/src/locales/de/rooms.json
@@ -590,6 +590,9 @@
"open": "{{name}}-Liste öffnen",
"close": "{{name}}-Liste schließen"
},
+ "unauthenticated": {
+ "badge": "Nicht authentifizierter Benutzer"
+ },
"muteYourself": "Mikrofon ausschalten",
"muteParticipant": "{{name}}’s Mikrofon ausschalten",
"muteParticipantAlert": {
diff --git a/src/frontend/src/locales/en/rooms.json b/src/frontend/src/locales/en/rooms.json
index f2f95cbb..62b34e25 100644
--- a/src/frontend/src/locales/en/rooms.json
+++ b/src/frontend/src/locales/en/rooms.json
@@ -589,6 +589,9 @@
"open": "Open {{name}} list",
"close": "Close {{name}} list"
},
+ "unauthenticated": {
+ "badge": "User is not authenticated"
+ },
"muteYourself": "Close your mic",
"muteParticipant": "Close the mic of {{name}}",
"muteParticipantAlert": {
diff --git a/src/frontend/src/locales/fr/rooms.json b/src/frontend/src/locales/fr/rooms.json
index 6a90762f..8621cb1d 100644
--- a/src/frontend/src/locales/fr/rooms.json
+++ b/src/frontend/src/locales/fr/rooms.json
@@ -589,6 +589,9 @@
"open": "Ouvrir la liste {{name}}",
"close": "Fermer la liste {{name}}"
},
+ "unauthenticated": {
+ "badge": "Utilisateur non authentifié"
+ },
"muteYourself": "Couper votre micro",
"muteParticipant": "Couper le micro de {{name}}",
"muteParticipantAlert": {
diff --git a/src/frontend/src/locales/nl/rooms.json b/src/frontend/src/locales/nl/rooms.json
index 97fafdf9..ec5afc04 100644
--- a/src/frontend/src/locales/nl/rooms.json
+++ b/src/frontend/src/locales/nl/rooms.json
@@ -589,6 +589,9 @@
"open": "Open {{name}} lijst",
"close": "Sluit {{name}} lijst"
},
+ "unauthenticated": {
+ "badge": "Niet authentifizierter Benutzer"
+ },
"muteYourself": "Uw microfoon dempen",
"muteParticipant": "Demp de microfoon van {{name}}",
"muteParticipantAlert": {