Sync meeting conversation name on title update#5335
Open
thisisamir98 wants to merge 1 commit into
Open
Conversation
Meeting creation already sets the underlying conversation name, but title updates only changed the meetings row. Rename the linked conversation when PUT /meetings includes a new title so clients receive the updated name through normal conversation metadata and rename notifications.
Contributor
|
@thisisamir98 I'm not sure if you got access to our CI? 🤔 Just in case, it's failing with |
blackheaven
requested changes
Jul 13, 2026
blackheaven
left a comment
Contributor
There was a problem hiding this comment.
IMO, we should be more subtle than this, there are multiple scenarii:
- A new meeting creates a new conversation
- A new meeting links to an existing conversation which has none
- A new meeting links to an existing conversation which has some
Which leads to few options:
- It's handled in the frontend (via a checkbox, or using
Meeting.titleas a source of truth) - We add logic to the backend to update it when we have 1 meeting = 1 conversation
- We add a parameter to the endpoint
@akshaymankar WDYT?
Member
|
@thisisamir98 What's the context for this? Why can't the clients just show meeting title? Since the |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
InternalRenameConversationto the conversation subsystem for server-side renames without a client connection idPUT /meetings, rename the linked MLS meeting conversation if its stored name differsMeetingWithConversationincludes the updated conversation nameContext
Meeting creation already sets
newConvName = Just newMeeting.titleon the underlying conversation. Title updates previously only changed themeetingstable, leavingcnvmNamestale on the conversation. Web clients can rely on conversation metadata and rename events once this is deployed.Test plan
cabal test wire-subsystems:unit-tests --test-options='--match=MeetingsSubsystem.Interpreter'GET /conversations/:idreturns the new name