Merge pull request #19457 from gustavotrott/graphql-sharedNotes-diff
Graphql provide SharedNotes diff
This commit is contained in:
commit
2f79618787
@ -1500,6 +1500,11 @@ create table "sharedNotes_rev" (
|
||||
);
|
||||
--create view "v_sharedNotes_rev" as select * from "sharedNotes_rev";
|
||||
|
||||
create view "v_sharedNotes_diff" as
|
||||
select "meetingId", "sharedNotesExtId", "userId", "start", "end", "diff"
|
||||
from "sharedNotes_rev"
|
||||
where "diff" is not null;
|
||||
|
||||
create table "sharedNotes_session" (
|
||||
"meetingId" varchar(100) references "meeting"("meetingId") ON DELETE CASCADE,
|
||||
"sharedNotesExtId" varchar(25),
|
||||
|
@ -0,0 +1,22 @@
|
||||
table:
|
||||
name: v_sharedNotes_diff
|
||||
schema: public
|
||||
configuration:
|
||||
column_config: {}
|
||||
custom_column_names: {}
|
||||
custom_name: sharedNotes_diff
|
||||
custom_root_fields: {}
|
||||
select_permissions:
|
||||
- role: bbb_client
|
||||
permission:
|
||||
columns:
|
||||
- diff
|
||||
- end
|
||||
- rev
|
||||
- sharedNotesExtId
|
||||
- start
|
||||
- userId
|
||||
filter:
|
||||
meetingId:
|
||||
_eq: X-Hasura-MeetingId
|
||||
comment: ""
|
@ -36,6 +36,7 @@
|
||||
- "!include public_v_pres_presentation_uploadToken.yaml"
|
||||
- "!include public_v_screenshare.yaml"
|
||||
- "!include public_v_sharedNotes.yaml"
|
||||
- "!include public_v_sharedNotes_diff.yaml"
|
||||
- "!include public_v_sharedNotes_session.yaml"
|
||||
- "!include public_v_timer.yaml"
|
||||
- "!include public_v_user.yaml"
|
||||
|
Loading…
Reference in New Issue
Block a user