1. 01 Mar, 2022 1 commit
  2. 21 Feb, 2022 1 commit
  3. 15 Feb, 2022 1 commit
  4. 24 Nov, 2021 1 commit
    • Roman Torsten's avatar
      Feature: Replace auth token with supplier. · 013436b8
      Roman Torsten authored
      Use case: oauth2 access limited time tokens which should be updated on regular basis. Supplier allows us to move refresh logic outside client.
      Use specified setter to set up supplier after gitlab api object creation.
      013436b8
  5. 18 Oct, 2021 1 commit
  6. 06 Oct, 2021 1 commit
  7. 18 Sep, 2021 5 commits
  8. 16 Sep, 2021 1 commit
  9. 14 Sep, 2021 4 commits
  10. 06 Sep, 2021 1 commit
  11. 25 Aug, 2021 3 commits
  12. 24 Aug, 2021 1 commit
  13. 22 Aug, 2021 1 commit
  14. 16 Aug, 2021 1 commit
  15. 13 Aug, 2021 1 commit
  16. 28 Jul, 2021 1 commit
  17. 20 Jul, 2021 1 commit
  18. 05 Jul, 2021 4 commits
  19. 26 Jun, 2021 2 commits
  20. 14 Jun, 2021 4 commits
  21. 07 Jun, 2021 1 commit
    • Gautier de Saint Martin Lacaze's avatar
      Fix #658 : Pager not working properly · 4e9f7a6c
      Gautier de Saint Martin Lacaze authored
      Since the removal of "X-Total-Pages" and "X-Total" headers, all paginations use the kaminari counter.
      In this mode, kaminari counter is reset to -1 during the call of the last page. This part is correct.
      Then when we call the `current()` method of the pager to get the current page. This method call the same `page` method than the `next` method. In this method the pager check if there is element before checking if we call for the current page. It throws NoSuchElementException erroneously.
      
      To fix, I change the check sequence. First I check ifthe user call the current page. If so, we return the corresponding items. If not we check if there is such elements and call the API.
      4e9f7a6c
  22. 01 Jun, 2021 3 commits