BigW Consortium Gitlab

  1. 07 Aug, 2017 1 commit
    • Improve checking if projects would be returned · f77fda64
      Yorick Peterse authored
      In various places we check if the same relation would return projects.
      This is done using "any?" which will run a COUNT query with any
      LIMIT/OFFSET values still applied.
      
      To work around all this we introduce 2 helper methods that take care of
      doing the right thing. This leads to the produced queries being simpler
      and fewer queries being executed.
  2. 14 Jul, 2017 1 commit
  3. 12 Jul, 2017 1 commit
  4. 11 Jul, 2017 1 commit
  5. 07 Jul, 2017 2 commits
  6. 06 Jul, 2017 6 commits
  7. 05 Jul, 2017 3 commits
  8. 03 Jul, 2017 2 commits
  9. 30 Jun, 2017 1 commit
  10. 12 Jun, 2017 1 commit
  11. 07 Jun, 2017 1 commit
  12. 06 Jun, 2017 2 commits
  13. 01 Jun, 2017 2 commits
  14. 30 May, 2017 2 commits
  15. 25 May, 2017 2 commits
  16. 22 May, 2017 1 commit
  17. 19 May, 2017 1 commit
  18. 10 May, 2017 1 commit
  19. 06 May, 2017 1 commit
  20. 05 May, 2017 3 commits
  21. 04 May, 2017 1 commit
  22. 02 May, 2017 1 commit
  23. 28 Apr, 2017 1 commit
    • Improve text on todo list when the todo action comes from yourself · 60e9405b
      Jacopo authored
      Improved todo message when an issue is assigned to yourself.
      - The new message when an user assign to himself an issue or a mr is: "You
      assigned issue xx to yourself"
      - The new message when an user adds a todo to himself is: "You added a
      todo for issue xx"
      - The new message when and user mention himself is: "You mentioned
      yourself on issue xx"
      - The new message when an user directly address himself is: "You
      directly addressed yourself on issue xx"
      - The new message when an user mark himself as an approver is: "You set
      yourself as an approver for merge request xx"
  24. 06 Apr, 2017 2 commits
    • ProjectsFinder should handle more options · b996a82f
      Jacopo authored
      Extended ProjectFinder in order to handle the following options:
       - current_user - which user use
       - project_ids_relation: int[] - project ids to use
       - params:
         -  trending: boolean
         -  non_public: boolean
         -  starred: boolean
         -  sort: string
         -  visibility_level: int
         -  tags: string[]
         -  personal: boolean
         -  search: string
         -  non_archived: boolean
      
      GroupProjectsFinder now inherits from ProjectsFinder.
      Changed the code in order to use the new available options.