Skip to content

Commit

Permalink
Merge pull request #4 from temporalio/abhinav/userMgmt-minorFix
Browse files Browse the repository at this point in the history
fix tense of invitation create and expiry fields
  • Loading branch information
anekkanti authored Sep 7, 2023
2 parents ab9d331 + f02b0d1 commit 28a502c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions temporal/api/cloud/identity/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ message UserSpec {

message Invitation {
// The date and time when the user was created
google.protobuf.Timestamp create_time = 1;
google.protobuf.Timestamp created_time = 1;
// The date and time when the invitation expires or has expired
google.protobuf.Timestamp expiry_time = 2;
google.protobuf.Timestamp expired_time = 2;
}

message User {
Expand Down
6 changes: 3 additions & 3 deletions temporal/api/cloud/operation/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ message AsyncOperation {
// If the operation failed, the reason for the failure
string failure_reason = 6;
// The date and time when the operation initiated
google.protobuf.Timestamp start_time = 7;
google.protobuf.Timestamp started_time = 7;
// The date and time when the operation completed
google.protobuf.Timestamp finish_time = 8;
}
google.protobuf.Timestamp finished_time = 8;
}

0 comments on commit 28a502c

Please sign in to comment.