mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
db9adb631f
- share requests to join with new privileged roles during reevaluating member role - share requests to join with new members, joined the community as TOKEN_MASTER, ADMIN - share requests to join revealed addresses to ADMINS and TOKEN_MASTERS - refactor common test functionality to make them more predictable - removed unused CommunityToken protobuf
22 lines
544 B
Protocol Buffer
22 lines
544 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "./;protobuf";
|
|
package protobuf;
|
|
|
|
import "communities.proto";
|
|
import "pairing.proto";
|
|
|
|
message CommunityPrivilegedUserSyncMessage {
|
|
uint64 clock = 1;
|
|
EventType type = 2;
|
|
bytes community_id = 3;
|
|
map<string,CommunityRequestToJoin> request_to_join = 4;
|
|
repeated SyncCommunityRequestsToJoin sync_requests_to_join = 5;
|
|
|
|
enum EventType {
|
|
UNKNOWN = 0;
|
|
CONTROL_NODE_ACCEPT_REQUEST_TO_JOIN = 1;
|
|
CONTROL_NODE_REJECT_REQUEST_TO_JOIN = 2;
|
|
CONTROL_NODE_ALL_SYNC_REQUESTS_TO_JOIN = 3;
|
|
}
|
|
} |