Skip to content

Commit

Permalink
fix(party/event): make display/start time optional
Browse files Browse the repository at this point in the history
  • Loading branch information
ZakShearman committed Mar 10, 2024
1 parent 7e46547 commit 003ec67
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 24 deletions.
46 changes: 25 additions & 21 deletions gen/go/model/party/models.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions src/proto/party/models.proto
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,14 @@ message EventData {
// id of type ObjectId
string id = 1;


// owner_id of type UUID
string owner_id = 2;
string owner_username = 3;
model.PlayerSkin owner_skin = 4;

// display_time the time the event will appear in UIs/in game.
google.protobuf.Timestamp display_time = 5;
google.protobuf.Timestamp start_time = 6;
optional google.protobuf.Timestamp display_time = 5;
optional google.protobuf.Timestamp start_time = 6;
}

message LiveEvent {
Expand Down

0 comments on commit 003ec67

Please sign in to comment.