Skip to content

Commit d8889a4

Browse files
authored
chore: add updated-at timestamps (#2331)
Signed-off-by: Miguel Martinez <[email protected]>
1 parent 5c10eaf commit d8889a4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+1162
-315
lines changed

app/controlplane/api/controlplane/v1/response_messages.pb.go

Lines changed: 322 additions & 284 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/controlplane/api/controlplane/v1/response_messages.proto

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,7 @@ message WorkflowContractItem {
171171
string name = 2;
172172
string description = 6;
173173
google.protobuf.Timestamp created_at = 3;
174+
google.protobuf.Timestamp updated_at = 10;
174175
int32 latest_revision = 4;
175176
google.protobuf.Timestamp latest_revision_created_at = 8;
176177
// Workflows associated with this contract
@@ -234,6 +235,7 @@ message User {
234235
string id = 1;
235236
string email = 2;
236237
google.protobuf.Timestamp created_at = 3;
238+
google.protobuf.Timestamp updated_at = 6;
237239
string first_name = 4;
238240
string last_name = 5;
239241
}
@@ -261,6 +263,7 @@ message OrgItem {
261263
string id = 1;
262264
string name = 2;
263265
google.protobuf.Timestamp created_at = 3;
266+
google.protobuf.Timestamp updated_at = 6;
264267
PolicyViolationBlockingStrategy default_policy_violation_strategy = 4;
265268
repeated string policy_allowed_hostnames = 5;
266269

app/controlplane/api/controlplane/v1/user.pb.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/controlplane/api/controlplane/v1/user.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright 2024 The Chainloop Authors.
2+
// Copyright 2024-2025 The Chainloop Authors.
33
//
44
// Licensed under the Apache License, Version 2.0 (the "License");
55
// you may not use this file except in compliance with the License.

app/controlplane/api/controlplane/v1/user_grpc.pb.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/controlplane/api/gen/frontend/controlplane/v1/response_messages.ts

Lines changed: 52 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/controlplane/api/gen/jsonschema/controlplane.v1.OrgItem.jsonschema.json

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/controlplane/api/gen/jsonschema/controlplane.v1.OrgItem.schema.json

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/controlplane/api/gen/jsonschema/controlplane.v1.User.jsonschema.json

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/controlplane/api/gen/jsonschema/controlplane.v1.User.schema.json

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)