BigW Consortium Gitlab

  1. 06 Apr, 2017 2 commits
  2. 05 Apr, 2017 2 commits
  3. 25 Mar, 2017 1 commit
  4. 21 Mar, 2017 2 commits
  5. 20 Mar, 2017 1 commit
  6. 13 Mar, 2017 7 commits
  7. 24 Feb, 2017 1 commit
  8. 23 Feb, 2017 2 commits
  9. 21 Feb, 2017 1 commit
  10. 16 Feb, 2017 3 commits
  11. 09 Feb, 2017 1 commit
  12. 07 Feb, 2017 1 commit
  13. 20 Jan, 2017 2 commits
  14. 23 Dec, 2016 1 commit
  15. 21 Dec, 2016 2 commits
  16. 05 Dec, 2016 1 commit
    • Feature: delegate all open discussions to Issue · 1123057a
      Bob Van Landuyt authored
      When a merge request can only be merged when all discussions are
      resolved. This feature allows to easily delegate those discussions to a
      new issue, while marking them as resolved in the merge request.
      
      The user is presented with a new issue, prepared with mentions of all
      unresolved discussions, including the first unresolved note of the
      discussion, time and link to the note.
      
      When the issue is created, the discussions in the merge request will get
      a system note directing the user to the newly created issue.
  17. 19 Nov, 2016 1 commit
  18. 17 Nov, 2016 2 commits
  19. 28 Oct, 2016 1 commit
  20. 19 Oct, 2016 5 commits
  21. 06 Oct, 2016 1 commit
    • Improve issue load time performance by avoiding ORDER BY in find_by call · aada0103
      Stan Hu authored
      The Sortable concern has a default scope that adds ORDER BY to all
      queries. EXPLAIN ANALYZE shows that this additional ORDER BY statement
      causes the SQL optimizer to use the wrong index, which leads to a load
      time of 2.9 s vs 0.073 ms just for the SELECT call. The minimal
      change here is to re-implement find_by using where and reorder to
      remove the ORDER BY clause in IssuesController#index.
      
      Closes #23075