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
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m17s
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user