Skip to content

Commit b0fff31

Browse files
authored
feat(group/project): Include invitation ID on list of pending invitations (#2217)
Signed-off-by: Javier Rodriguez <[email protected]>
1 parent ebb0be4 commit b0fff31

File tree

12 files changed

+288
-196
lines changed

12 files changed

+288
-196
lines changed

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

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

app/controlplane/api/controlplane/v1/group.proto

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,8 @@ message PendingGroupInvitation {
187187
optional User invited_by = 2;
188188
// Timestamp when the invitation was created
189189
google.protobuf.Timestamp created_at = 3;
190+
// Unique identifier for the invitation
191+
string invitation_id = 4;
190192
}
191193

192194
// Group represents a collection of users with shared access to resources

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

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

app/controlplane/api/controlplane/v1/project.proto

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,4 +198,6 @@ message PendingProjectInvitation {
198198
optional User invited_by = 2;
199199
// Timestamp when the invitation was created
200200
google.protobuf.Timestamp created_at = 3;
201+
// Unique identifier for the invitation
202+
string invitation_id = 4;
201203
}

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

Lines changed: 16 additions & 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/project.ts

Lines changed: 16 additions & 1 deletion
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.PendingGroupInvitation.jsonschema.json

Lines changed: 8 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.PendingGroupInvitation.schema.json

Lines changed: 8 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.PendingProjectInvitation.jsonschema.json

Lines changed: 8 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.PendingProjectInvitation.schema.json

Lines changed: 8 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)