1. 09 7月, 2018 1 次提交
  2. 07 7月, 2018 1 次提交
  3. 06 7月, 2018 5 次提交
  4. 05 7月, 2018 1 次提交
  5. 04 7月, 2018 8 次提交
  6. 03 7月, 2018 3 次提交
    • Y
      Fixed pagination of web hook logs · f3008907
      Yorick Peterse 提交于
      For reasons unknown, the logs of a web hook were paginated in memory.
      This would result in the "Edit" page of a web hook timing out once it
      has more than a few thousand log entries.
      
      This commit makes the following changes:
      
      1. We use LIMIT/OFFSET to paginate the data, instead of doing this in
         memory.
      
      2. We limit the logs to the last two days, just like the documentation
         says (instead of retrieving everything).
      
      3. We change the indexes on "web_hook_logs" so the query to get the data
         can perform a backwards index scan, without the need for a Filter.
      
      These changes combined ensure that Projects::HooksController#edit no
      longer times out.
      f3008907
    • J
      More EE->CE fixes · 50c1a989
      Jan Provaznik 提交于
      50c1a989
    • J
      [backend] Addressed review comments · 7458ca8e
      Jan Provaznik 提交于
      * Group filtering now includes also issues/MRs from
      subgroups/subprojects
      * fixed due_date
      * Also DRYed todo controller specs
      7458ca8e
  7. 02 7月, 2018 1 次提交
  8. 29 6月, 2018 2 次提交
  9. 28 6月, 2018 1 次提交
  10. 27 6月, 2018 4 次提交
  11. 26 6月, 2018 3 次提交
  12. 25 6月, 2018 3 次提交
  13. 22 6月, 2018 1 次提交
  14. 21 6月, 2018 4 次提交
  15. 20 6月, 2018 2 次提交
    • B
      [Rails5] Set request.format in commits_controller · 6da19415
      blackst0ne 提交于
      Since Rails 5.0 `request.format` is being set depending on the route extension.
      
      In commits pages we pass a ref as a URL parameter.
      If the ref is an extension-like, Rails converts it and sets to
      `request.format`.
      
      E.g. if the ref is `some_branch.atom`, Rails starts responding with
      `atom` format, but it should response with `html` because `.atom` is the
      part of ref name, not the format.
      
      This commit explicitly sets `request.format` to `:html` when needed.
      6da19415
    • J
      Rails5 fix expected: 0 times with any arguments received: 1 time with... · ce30d14b
      Jasper Maes 提交于
      Rails5 fix  expected: 0 times with any arguments received: 1 time with arguments: DashboardController
      ce30d14b