Skip to content

Commit

Permalink
feat: update metadata field changes
Browse files Browse the repository at this point in the history
  • Loading branch information
neekolas committed May 19, 2024
1 parent 3e84e18 commit 0fd391b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions proto/mls/message_contents/transcript_messages.proto
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ message GroupUpdated {
}

// A summary of a change to the mutable metadata
message MetadataChange {
message MetadataFieldChange {
// The field that was changed
string field_name = 1;
// The previous value
string old_value = 2;
optional string old_value = 2;
// The updated value
string new_value = 3;
optional string new_value = 3;
}

string initiated_by_inbox_id = 1;
Expand All @@ -53,5 +53,5 @@ message GroupUpdated {
// The inboxes removed in the commit
repeated Inbox removed_inboxes = 3;
// The metadata changes in the commit
repeated MetadataChange metadata_changes = 4;
repeated MetadataFieldChange metadata_field_changes = 4;
}

0 comments on commit 0fd391b

Please sign in to comment.