include guestLobbyMessage prop
This commit is contained in:
parent
e497cd5cd8
commit
e28617c725
@ -49,7 +49,7 @@ DROP VIEW IF EXISTS "v_user_voice";
|
||||
DROP VIEW IF EXISTS "v_user_breakoutRoom";
|
||||
DROP VIEW IF EXISTS "v_user";
|
||||
DROP VIEW IF EXISTS "v_user_current";
|
||||
DROP VIEW IF EXISTS "v_user_current_guestStatus";
|
||||
DROP VIEW IF EXISTS "v_user_guest";
|
||||
DROP VIEW IF EXISTS "v_user_ref";
|
||||
DROP VIEW IF EXISTS "v_user_customParameter";
|
||||
DROP VIEW IF EXISTS "v_user_welcomeMsgs";
|
||||
@ -105,8 +105,7 @@ create table "meeting" (
|
||||
"learningDashboardAccessToken" varchar(100),
|
||||
"html5InstanceId" varchar(100),
|
||||
"createdTime" bigint,
|
||||
"duration" integer,
|
||||
"guestLobbyMessage" text
|
||||
"duration" integer
|
||||
);
|
||||
create index "idx_meeting_extId" on "meeting"("extId");
|
||||
|
||||
@ -176,6 +175,7 @@ SELECT "meeting_usersPolicies"."meetingId",
|
||||
"meeting_usersPolicies"."webcamsOnlyForModerator",
|
||||
"meeting_usersPolicies"."userCameraCap",
|
||||
"meeting_usersPolicies"."guestPolicy",
|
||||
"meeting_usersPolicies"."guestLobbyMessage",
|
||||
"meeting_usersPolicies"."meetingLayout",
|
||||
"meeting_usersPolicies"."allowModsToUnmuteUsers",
|
||||
"meeting_usersPolicies"."allowModsToEjectCameras",
|
||||
@ -413,7 +413,6 @@ AS SELECT "user"."userId",
|
||||
CASE WHEN "user"."role" = 'MODERATOR' THEN true ELSE false END "isModerator"
|
||||
FROM "user";
|
||||
|
||||
--CREATE OR REPLACE VIEW "v_user_guestStatus" AS
|
||||
CREATE OR REPLACE VIEW "v_user_guest" AS
|
||||
SELECT u."meetingId", u."userId",
|
||||
u."guestStatus",
|
||||
|
@ -8,6 +8,7 @@ select_permissions:
|
||||
- allowModsToEjectCameras
|
||||
- allowModsToUnmuteUsers
|
||||
- authenticatedGuest
|
||||
- guestLobbyMessage
|
||||
- guestPolicy
|
||||
- maxUserConcurrentAccesses
|
||||
- maxUsers
|
||||
|
@ -2,6 +2,9 @@
|
||||
- "!include public_meeting.yaml"
|
||||
- "!include public_user_connectionStatus.yaml"
|
||||
- "!include public_user_localSettings.yaml"
|
||||
- "!include public_v_breakoutRoom.yaml"
|
||||
- "!include public_v_breakoutRoom_assignedUser.yaml"
|
||||
- "!include public_v_breakoutRoom_participant.yaml"
|
||||
- "!include public_v_chat.yaml"
|
||||
- "!include public_v_chat_message_private.yaml"
|
||||
- "!include public_v_chat_message_public.yaml"
|
||||
@ -9,9 +12,6 @@
|
||||
- "!include public_v_meeting_breakoutPolicies.yaml"
|
||||
- "!include public_v_meeting_group.yaml"
|
||||
- "!include public_v_meeting_lockSettings.yaml"
|
||||
- "!include public_v_breakoutRoom.yaml"
|
||||
- "!include public_v_breakoutRoom_assignedUser.yaml"
|
||||
- "!include public_v_breakoutRoom_participant.yaml"
|
||||
- "!include public_v_meeting_recordingPolicies.yaml"
|
||||
- "!include public_v_meeting_showUserlist.yaml"
|
||||
- "!include public_v_meeting_usersPolicies.yaml"
|
||||
|
Loading…
Reference in New Issue
Block a user