feat(room): enforce minimum room name length of 2 characters in creation and editing
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m17s

This commit is contained in:
2026-03-03 10:02:28 +01:00
parent 1c9c5224ae
commit 4bb22be496
4 changed files with 9 additions and 1 deletions

View File

@@ -74,7 +74,7 @@ export async function createMeeting(room, logoutURL, loginURL = null, presentati
const params = {
meetingID: room.uid,
name: room.name,
name: room.name.length >= 2 ? room.name : room.name.padEnd(2, ' '),
attendeePW,
moderatorPW,
welcome,