Skip to content

Commit f8a0b45

Browse files
committed
Fix viewer relation for past meeting artifacts
Updated the viewer relation for all three past meeting artifact types (recording, transcript, summary) to accept both [user] and [user:*] types. This allows the backend to create viewer tuples for specific users (e.g., hosts or participants) in addition to the wildcard [user:*] tuple for public visibility. Also bumped the patch version from 5.3.2 to 5.3.3. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Signed-off-by: Andres Tobon <[email protected]>
1 parent 46e19d7 commit f8a0b45

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

charts/lfx-platform/templates/openfga/model.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
- version:
2222
major: 5
2323
minor: 3
24-
patch: 2
24+
patch: 3
2525
authorizationModel: |
2626
model
2727
schema 1.1
@@ -143,7 +143,7 @@ spec:
143143
# should be able to view the recording.
144144
# If it is set to only meeting hosts, then only the meeting hosts should be able
145145
# to view the recording.
146-
define viewer: [user:*] or writer or auditor
146+
define viewer: [user, user:*] or writer or auditor
147147
148148
# The past_meeting_transcript type identifies a transcript of a past meeting.
149149
# Access to a transcript is limited to one of the following groups:
@@ -166,7 +166,7 @@ spec:
166166
# should be able to view the transcript.
167167
# If it is set to only meeting hosts, then only the meeting hosts should be able
168168
# to view the transcript.
169-
define viewer: [user:*] or writer or auditor
169+
define viewer: [user, user:*] or writer or auditor
170170
171171
# The past_meeting_summary type identifies a summary of a past meeting.
172172
# Access to a summary is limited to one of the following groups:
@@ -189,5 +189,5 @@ spec:
189189
# should be able to view the summary.
190190
# If it is set to only meeting hosts, then only the meeting hosts should be able
191191
# to view the summary.
192-
define viewer: [user:*] or writer or auditor
192+
define viewer: [user, user:*] or writer or auditor
193193
{{- end }}

0 commit comments

Comments
 (0)