-
-
Notifications
You must be signed in to change notification settings - Fork 452
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
Pagination of Project Members #281
Conversation
Thank you for your contribution. Could you use the However, you have to do a little more work to not break BC. You will have to accept |
I had to remove deprecated notice, because it was catched by build ci. Maybe you know another way to implement this deprecation notice. Thanks |
You have to write |
@fbourigault thanks for your help. @m4tthumphrey what do you think about a merge? |
@fbourigault This is a breaking change. Maybe find a way to make it backwards-compatible? |
@fbourigault What are the next steps? Do you want to merge or do we have to find a way to make it backwards-compatible as @m1guelpf suggested? |
@m1guelpf It already is backwards compatible. There is only a notice triggered that the string parameter is being deprecated. |
@20uf I would be very happy if you could approve my new changes |
@tobiasetter Can you fix the tests? |
@m1guelpf what do you mean? all tests were successful |
@tobiasetter Sorry, I meant merge conflicts |
@m1guelpf Sure, no problem =) |
@tobiasetter Thank you for your contribution! |
@m1guelpf how about creating a new release? |
GitLab API per default defines 20 items per_page for the returned result. Now if a project has more than 20 members we have an issue with increasing the number of items to max i.e. 100.
Therefore I complemented your code.
Many thanks!