Skip to content

Commit

Permalink
Merge pull request #193 from xmtp/np/store-group-hex
Browse files Browse the repository at this point in the history
Store the group hex instead of the bytearray
  • Loading branch information
nplasterer authored Jul 1, 2024
2 parents 9ee2710 + 857ccd1 commit 2834cfa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions proto/message_contents/private_preferences.proto
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ message PrivatePreferencesAction {
// Allow Group access
message AllowGroup {
// Add the given group_ids to the allow list
repeated bytes group_ids = 1;
repeated string group_ids = 1;
}

// Deny (deny) Group access
message DenyGroup {
// Add the given group_ids to the deny list
repeated bytes group_ids = 1;
repeated string group_ids = 1;
}

oneof message_type {
Expand Down

0 comments on commit 2834cfa

Please sign in to comment.