Skip to content

Commit

Permalink
fix: Adjust Org user_email and update return (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandro-Meireles authored Aug 25, 2021
1 parent 67a9efe commit 9054c59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flow/org.proto
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ service OrgController {
rpc List(OrgListRequest) returns (stream Org) {}
rpc Create(OrgCreateRequest) returns (Org) {}
rpc Retrieve(OrgRetrieveRequest) returns (Org) {}
rpc Update(OrgUpdateRequest) returns (OrgUpdateRequest) {}
rpc Update(OrgUpdateRequest) returns (Org) {}
rpc Destroy(OrgDestroyRequest) returns (google.protobuf.Empty) {}
}

Expand Down Expand Up @@ -50,7 +50,7 @@ message OrgDestroyRequest {

message OrgUpdateRequest {
string uuid = 1;
string user_email = 2;
optional string modified_by = 2;
optional string name = 3;
optional string timezone = 4;
optional string date_format = 5;
Expand Down

0 comments on commit 9054c59

Please sign in to comment.