BigW Consortium Gitlab

  1. 08 May, 2017 1 commit
  2. 05 May, 2017 1 commit
  3. 04 May, 2017 1 commit
  4. 12 Apr, 2017 1 commit
  5. 03 Apr, 2017 2 commits
  6. 08 Mar, 2017 1 commit
  7. 23 Feb, 2017 2 commits
  8. 21 Feb, 2017 3 commits
  9. 18 Feb, 2017 2 commits
  10. 09 Feb, 2017 1 commit
  11. 30 Dec, 2016 1 commit
    • Fix failures in default sort order spec · ff4d5fc1
      Adam Niedzielski authored
      Test cases were not waiting for page load after clicking.
      This caused failures in test cases that were executed right after
      these incorrect ones, because of requests hitting server after
      a test was finished.
      We do not have to click links, we can go directly to a correct page
      by passing parameters in the URL.
  12. 18 Aug, 2016 1 commit
    • Handle legacy sort order values · d3acded4
      Sean McGivern authored
      The sort orders used to be id_asc / id_desc, and are now created_asc /
      created_desc. Users can still have cookies containing the old sort
      orders, or bookmarks to links specifying them, so convert these to the
      new versions quietly.
  13. 13 Aug, 2016 1 commit
  14. 01 Aug, 2016 1 commit
    • State specific default sort order for issuables · 84a3225b
      zs authored
      Provide more sensible default sort order for issues and merge requests
      based on the following table:
      
      | type           | state  | default sort order |
      |----------------|--------|--------------------|
      | issues         | open   | last created       |
      | issues         | closed | last updated       |
      | issues         | all    | last created       |
      | merge requests | open   | last created       |
      | merge requests | merged | last updated       |
      | merge requests | closed | last updated       |
      | merge requests | all    | last created       |