Commit a495c36
fix(meetings): always fetch per-user join URL for public meetings (#617)
* fix(meetings): always fetch per-user join URL for public meetings
The `public_link` field returned by ITX/query-service is the LFX
landing-page URL used in calendar invites, not a direct Zoom join URL.
Short-circuiting the join flow on `public_link` caused a cascade where
clicking "Join" sent users to the LFX landing page, which then bounced
them back into the join flow.
Drop the `public_link` short-circuit in `dashboard-meeting-card` and
`meeting-card`, and stop pre-fetching/returning it from
`GET /public/api/meetings/:id`. `POST /public/api/meetings/:id/join-url`
now always calls `meetingService.getMeetingJoinUrl` so each viewer gets
their own per-user join link with the existing time-window, password,
and restricted-meeting checks. Remove the now-unused `public_link`
field from the shared `Meeting` interface and the orphan
`handleJoinUrlForPublicMeeting` helper.
Generated with Claude
Signed-off-by: Audi Young <audi.mycloud@gmail.com>
* refactor(meetings): drop bug-explanation comments
Signed-off-by: Asitha de Silva <asithade@gmail.com>
---------
Signed-off-by: Audi Young <audi.mycloud@gmail.com>
Signed-off-by: Asitha de Silva <asithade@gmail.com>
Co-authored-by: Asitha de Silva <asithade@gmail.com>1 parent 67e1b20 commit a495c36
4 files changed
Lines changed: 0 additions & 57 deletions
File tree
- apps/lfx-one/src
- app/modules
- dashboards/components/dashboard-meeting-card
- meetings/components/meeting-card
- server/controllers
Lines changed: 0 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
95 | 95 | | |
96 | 96 | | |
97 | 97 | | |
98 | | - | |
99 | | - | |
100 | | - | |
101 | | - | |
102 | 98 | | |
103 | 99 | | |
104 | 100 | | |
| |||
Lines changed: 0 additions & 6 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
202 | 202 | | |
203 | 203 | | |
204 | 204 | | |
205 | | - | |
206 | | - | |
207 | | - | |
208 | | - | |
209 | | - | |
210 | | - | |
211 | 205 | | |
212 | 206 | | |
213 | 207 | | |
| |||
Lines changed: 0 additions & 45 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
124 | 124 | | |
125 | 125 | | |
126 | 126 | | |
127 | | - | |
128 | 127 | | |
129 | | - | |
130 | | - | |
131 | | - | |
132 | | - | |
133 | | - | |
134 | | - | |
135 | | - | |
136 | | - | |
137 | | - | |
138 | | - | |
139 | 128 | | |
140 | 129 | | |
141 | 130 | | |
142 | 131 | | |
143 | 132 | | |
144 | 133 | | |
145 | 134 | | |
146 | | - | |
147 | | - | |
148 | | - | |
149 | 135 | | |
150 | 136 | | |
151 | 137 | | |
| |||
312 | 298 | | |
313 | 299 | | |
314 | 300 | | |
315 | | - | |
316 | | - | |
317 | | - | |
318 | | - | |
319 | | - | |
320 | | - | |
321 | 301 | | |
322 | 302 | | |
323 | 303 | | |
| |||
499 | 479 | | |
500 | 480 | | |
501 | 481 | | |
502 | | - | |
503 | | - | |
504 | | - | |
505 | | - | |
506 | | - | |
507 | | - | |
508 | | - | |
509 | | - | |
510 | | - | |
511 | | - | |
512 | | - | |
513 | | - | |
514 | | - | |
515 | | - | |
516 | | - | |
517 | | - | |
518 | | - | |
519 | | - | |
520 | | - | |
521 | | - | |
522 | | - | |
523 | | - | |
524 | | - | |
525 | | - | |
526 | | - | |
527 | 482 | | |
528 | 483 | | |
529 | 484 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
210 | 210 | | |
211 | 211 | | |
212 | 212 | | |
213 | | - | |
214 | | - | |
215 | 213 | | |
216 | 214 | | |
217 | 215 | | |
| |||
0 commit comments