-
Notifications
You must be signed in to change notification settings - Fork 75
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
APP-2437: update OrgDetails proto for ops dashboard improvements #599
Conversation
message SearchOrganizationsRequest { | ||
optional string org_id = 1; | ||
optional string org_name = 2; | ||
optional string cid = 3; | ||
optional string public_namespace = 4; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[self] didn't use oneof
per our eng guidelines
Avoid oneof except for enums, since non-scalar oneofs are hard to work with in most protoc generations
Abe pointed out I probably picked up a deprecation and got unlucky on timing, this guy: #595 |
…earch features APP-2437: Add SearchOrganizations gRPC
GitHub labeling integration is having a bad day. Doing some creative rebasing and force pushing to see if I can fix it. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[I'm continuing to read/ramp up on how we use grcp in golang but the PR LGTM]
APP-2437
Included
public_namespace
andorg name
as well to the new search message type because I can see us implementing these in time. Only doing search on CRM ID at this stage to keep the changes tightly scoped.