Skip to content

Commit

Permalink
refactor: s/PublishToGroup/SendGroupMessages and s/PublishWelcomes/Se…
Browse files Browse the repository at this point in the history
…ndWelcomeMessages
  • Loading branch information
Steven Normore committed Jan 11, 2024
1 parent ff6856d commit 3a82648
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions proto/mls/api/v1/mls.proto
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {

// RPCs for the new MLS API
service MlsApi {
// Publish a MLS payload, that would be validated before being stored to the
// Send a MLS payload, that would be validated before being stored to the
// network
rpc PublishToGroup(PublishToGroupRequest) returns (google.protobuf.Empty) {
rpc SendGroupMessages(SendGroupMessagesRequest) returns (google.protobuf.Empty) {
option (google.api.http) = {
post: "/mls/v1/publish-to-group"
body: "*"
};
}

// Publish a batch of welcome messages
rpc PublishWelcomes(PublishWelcomesRequest) returns (google.protobuf.Empty) {
// Send a batch of welcome messages
rpc SendWelcomeMessages(SendWelcomeMessagesRequest) returns (google.protobuf.Empty) {
option (google.api.http) = {
post: "/mls/v1/publish-welcomes"
body: "*"
Expand Down

0 comments on commit 3a82648

Please sign in to comment.