-
Notifications
You must be signed in to change notification settings - Fork 509
Add backend for conversation descriptions #4587
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
nickvergessen
merged 13 commits into
master
from
add-backend-for-conversation-descriptions
Dec 8, 2020
Merged
Changes from 1 commit
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
b64f891
Add description field to conversations
danxuliu c5cf6be
Add endpoint to set the description of a conversation
danxuliu e8e4acc
Return description with the rest of the conversation data
danxuliu 38bc918
Add integration test for getting room data when lobby is enabled
danxuliu d259efd
Add integration tests for getting and setting the room description
danxuliu f52aa0c
Notify external signaling server when description changes
danxuliu 6b9cca2
Add documentation for the description endpoint
danxuliu 0c1a7bd
Return raw description also when getting the conversation list
danxuliu 803766d
Add support for conversation descriptions to occ commands
danxuliu 2ae3abf
Add integration tests for description in occ commands
danxuliu d4249ab
Add system message when the description of a conversation is changed
danxuliu 72168dd
Fix typo in scenario names
danxuliu 4667b1a
Increase maximum description length to 500 characters
danxuliu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Notify external signaling server when description changes
Signed-off-by: Daniel Calviño Sánchez <[email protected]>
- Loading branch information
commit f52aa0cf47f134d50824f0afbecd7374dadb5ba2
There are no files selected for viewing
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
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
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
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not changing anything on the signaling?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What do you mean?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is
getPropertiesForSignalingbut the data is not used in signaling, so we don't need to expose it?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The new description will be relayed by the signaling server to the clients in the
roomlist->updatemessage. Currently we are not using the updated properties from the message, though, but I think it is better to send it for consistency with the rest of the update messages.