An error occurred fetching the project authors.
  1. 15 Jan, 2020 1 commit
  2. 25 Oct, 2019 1 commit
    • Heinrich Lee Yu's avatar
      Fix incorrect rendering of flash messages · 1453d309
      Heinrich Lee Yu authored
      Flash messages are not cleared unless they are accessed in
      a request. Our JSON requests don't read the flash causing these
      messages to persist to unrelated requests.
      
      We fix this by only setting the flash message for non-AJAX
      HTML requests.
      1453d309
  3. 30 Sep, 2019 1 commit
  4. 23 Sep, 2019 1 commit
  5. 19 Aug, 2019 2 commits
  6. 16 Jul, 2019 2 commits
  7. 15 Apr, 2019 1 commit
  8. 09 Apr, 2019 2 commits
  9. 05 Apr, 2019 2 commits
  10. 24 Jan, 2019 1 commit
    • Jacopo's avatar
      Adds milestone search · 22eb2e4c
      Jacopo authored
      Adds to search ILIKE search for milestones title in:
        - Milestones dashboard
        - Group milestones page
        - Project milestones page
      22eb2e4c
  11. 20 Dec, 2018 1 commit
  12. 19 Dec, 2018 1 commit
  13. 18 Dec, 2018 2 commits
    • blackst0ne's avatar
      Update specs to rails5 format · 77b85029
      blackst0ne authored
      Updates specs to use new rails5 format.
      
      The old format:
      `get :show, { some: params }, { some: headers }`
      
      The new format:
      `get :show, params: { some: params }, headers: { some: headers }`
      77b85029
    • blackst0ne's avatar
      Update specs to rails5 format · b44a2c80
      blackst0ne authored
      Updates specs to use new rails5 format.
      
      The old format:
      `get :show, { some: params }, { some: headers }`
      
      The new format:
      `get :show, params: { some: params }, headers: { some: headers }`
      b44a2c80
  14. 01 Nov, 2018 1 commit
  15. 06 Aug, 2018 1 commit
  16. 11 Jul, 2018 2 commits
  17. 22 Dec, 2017 2 commits
  18. 23 Oct, 2017 1 commit
  19. 20 Oct, 2017 1 commit
  20. 02 Aug, 2017 2 commits
  21. 07 Jul, 2017 1 commit
  22. 26 Jun, 2017 1 commit
  23. 19 May, 2017 2 commits
    • Michael Kozono's avatar
      Port of fix-issue-32506 to EE · 1b9cb467
      Michael Kozono authored
      1b9cb467
    • Michael Kozono's avatar
      Refactor to more robust implementation · 49697bc8
      Michael Kozono authored
      In order to avoid string manipulation or modify route params (to make them unambiguous for `url_for`), we are accepting a behavior change:
      
      When being redirected to the canonical path for a group, if you requested a group show path starting with `/groups/…` then you’ll now be redirected to the group at root `/…`.
      49697bc8
  24. 26 Apr, 2017 1 commit
  25. 25 Jan, 2017 1 commit
  26. 09 Aug, 2016 2 commits
  27. 07 Apr, 2016 1 commit
  28. 05 Apr, 2016 2 commits
  29. 05 Dec, 2015 1 commit
    • Stan Hu's avatar
      Fix Error 500 when creating global milestones with Unicode characters · d800a949
      Stan Hu authored
      Two issues:
      
      1. The constraints in the resources were incorrect. Here's what it was before:
      ```
      group_milestone  GET /groups/:group_id/milestones/:id(.:format)  groups/milestones#show {:id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/, :group_id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/}
      ```
      
      In this case, id is actually the title of the milestone, which can be anything at the moment.
      
      After:
      
      ```
      group_milestone  GET /groups/:group_id/milestones/:id(.:format)  groups/milestones#show {:id=>/[^\/]+/, :group_id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/}
      ```
      
      2. `parameterize` would strip all Unicode characters, leaving a blank string. Rails would report something like:
      
      ActionView::Template::Error (No route matches {:action=>"show", :controller=>"groups/milestones", :group_id=>#<Group id: 48, name: "ops-dev", path: "ops-dev", owner_id: nil, created_at: "2015-11-15 08:55:30", updated_at: "2015-12-02 06:23:26", type: "Group", description: "", avatar: "sha1.c71e73d51af1865c1bbbf6208e10044d46c9bb93.png", public: false>, :id=>"", :title=>"肯定不是中文的问题"} missing required keys: [:id]):
      
      This change uses the babosa library to create a better slug, which surprisingly
      isn't actually used by the global milestone controllers. Instead, they use the
      title passed as a query string for some reason.
      
      Closes https://github.com/gitlabhq/gitlabhq/issues/9881
      
      Fix constraints
      d800a949