Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add email field to change to identify the user that created it #238

Merged
merged 3 commits into from
Jul 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions changes.proto
Original file line number Diff line number Diff line change
Expand Up @@ -525,6 +525,9 @@ message ChangeSummary {
// The name of the user that created the change
string creatorName = 6;

// The email of the user that created the change
string creatorEmail = 15;

// I'm going to omit the creatorLink for now, since it's not clear what it
// should be
// string creatorLink = 7;
Expand Down Expand Up @@ -579,6 +582,9 @@ message ChangeMetadata {
// The name of the user that created the change
string creatorName = 5;

// The email of the user that created the change
string creatorEmail = 19;

// The number of apps that will be affected by this change
int32 numAffectedApps = 6;

Expand Down
Loading