File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -15,13 +15,13 @@ option java_package = "org.xmtp.proto.message.contents";
15
15
// store.
16
16
message PrivatePreferencesAction {
17
17
// Allow 1:1 direct message (DM) access
18
- message AllowDM {
18
+ message AllowAddress {
19
19
// Add the given wallet addresses to the allow list
20
20
repeated string wallet_addresses = 1 ;
21
21
}
22
22
23
23
// Deny (block) 1:1 direct message (DM) access
24
- message DenyDM {
24
+ message DenyAddress {
25
25
// Add the given wallet addresses to the deny list
26
26
repeated string wallet_addresses = 1 ;
27
27
}
@@ -39,8 +39,8 @@ message PrivatePreferencesAction {
39
39
}
40
40
41
41
oneof message_type {
42
- AllowDM allow_dm = 1 ;
43
- DenyDM deny_dm = 2 ;
42
+ AllowAddress allow_address = 1 ;
43
+ DenyAddress deny_address = 2 ;
44
44
AllowGroup allow_group = 3 ;
45
45
DenyGroup deny_group = 4 ;
46
46
}
You can’t perform that action at this time.
0 commit comments