BigW Consortium Gitlab

  1. 27 Jan, 2017 3 commits
  2. 01 Dec, 2016 1 commit
    • Save a query on issue and MR lists · 79b5bfc1
      Sean McGivern authored
      `any?` on an AR relation performs a `SELECT COUNT`, which we don't need.
      
      1. We are very likely to have issues or MRs, so the `SELECT COUNT` is
         often unnecessary.
      2. Even where there are no items returned, the overhead of the
         `SELECT *` instead of `SELECT COUNT` is relatively small.
      
      Calling `to_a` on the relation lets us use `Enumerable#any?`, which will
      return immediately if there are objects returned.
  3. 18 Nov, 2016 1 commit
  4. 06 Jun, 2016 2 commits
  5. 26 Feb, 2016 1 commit
  6. 02 Dec, 2015 1 commit
  7. 14 Feb, 2015 1 commit
    • Upgrade to Rails 4.1.9 · 76aad9b7
      Vinnie Okada authored
      Make the following changes to deal with new behavior in Rails 4.1.2:
      
      * Use nested resources to avoid slashes in arguments to path helpers.
  8. 30 May, 2014 1 commit
  9. 29 May, 2014 2 commits
  10. 20 Feb, 2014 1 commit
  11. 24 Dec, 2013 1 commit
  12. 15 Aug, 2013 1 commit
    • More specific empty state message wording · 4b91ffca
      Henry Smith authored
      I've changed all the instances of "Nothing to show here" to specifically mention
      the name of the entity of which there are none to show. This makes for a
      slightly smoother reading experience.
  13. 07 Aug, 2013 1 commit
  14. 06 Aug, 2013 2 commits