-
Notifications
You must be signed in to change notification settings - Fork 629
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
feat(\internal): sorting column on ListIAMMembersRequest #9203
base: main
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@@ -143,3 +143,11 @@ message UserIDQuery { | |||
} | |||
]; | |||
} | |||
|
|||
enum MemberFieldColumnName { |
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.
Please comment on what fields to be considered here, for now i have added these fields
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.
That's alright, additional fields can be added later on if necessary.
@@ -8776,8 +8776,9 @@ message ListIAMMemberRolesResponse { | |||
message ListIAMMembersRequest { | |||
//list limitations and ordering | |||
zitadel.v1.ListQuery query = 1; | |||
zitadel.member.v1.MemberFieldColumnName sorting_column=2; |
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.
Please fix formatting and use '3' for this field, to not break the already existing definition.
@@ -143,3 +143,11 @@ message UserIDQuery { | |||
} | |||
]; | |||
} | |||
|
|||
enum MemberFieldColumnName { |
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.
That's alright, additional fields can be added later on if necessary.
@@ -688,7 +688,8 @@ message RemoveInstanceResponse { | |||
message ListIAMMembersRequest { | |||
zitadel.v1.ListQuery query = 1; | |||
string instance_id = 2; | |||
repeated zitadel.member.v1.SearchQuery queries = 3; | |||
zitadel.member.v1.MemberFieldColumnName sorting_column=3; |
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.
Please fix formatting and use '4' for this field, to not break the already existing definition.
@MAHANTH-wq Please also fill in the PR description. |
Which Problems Are Solved
Replace this example text with a concise list of problems that this PR solves.
For example:
How the Problems Are Solved
Replace this example text with a concise list of changes that this PR introduces.
For example:
Additional Changes
Replace this example text with a concise list of additional changes that this PR introduces, that are not directly solving the initial problem but are related.
For example:
Additional Context
Replace this example with links to related issues, discussions, discord threads, or other sources with more context.
Use the Closing #issue syntax for issues that are resolved with this PR.