mirror of
https://github.com/suitenumerique/meet.git
synced 2026-08-12 11:46:52 +00:00
🐛(backend) allow any string as sub in the API serializer
The API serializer was too restrictive on the `sub` field, expecting a UUID. This worked in our development and production setups because our Keycloak is configured to emit UUID subs, but it broke for other providers. Per the OIDC spec and the DB model, `sub` can be any string. Align the serializer with this and accept arbitrary string values. Fixes #1525.
This commit is contained in:
@@ -297,8 +297,8 @@ class RoomInviteSerializer(serializers.Serializer):
|
||||
class BaseParticipantsManagementSerializer(BaseValidationOnlySerializer):
|
||||
"""Base serializer for participant management operations."""
|
||||
|
||||
participant_identity = serializers.UUIDField(
|
||||
help_text="LiveKit participant identity (UUID format)"
|
||||
participant_identity = serializers.CharField(
|
||||
help_text="LiveKit participant identity (matching the user's sub format)"
|
||||
)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user