An error occurred fetching the project authors.
- 15 Jan, 2020 1 commit
-
-
Heinrich Lee Yu authored
JSON requests are made for populating dropdowns and filters. These should include ancestor milestones because ancestor milestones can be assigned to the group's issues
-
- 25 Oct, 2019 1 commit
-
-
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.
-
- 30 Sep, 2019 1 commit
-
-
Alexandru Croitor authored
-
- 23 Sep, 2019 1 commit
-
-
Alexandru Croitor authored
-
- 19 Aug, 2019 2 commits
-
-
Vitali Tatarintev authored
Fixes deprecation warning: ``` DEPRECATION WARNING: The success? predicate is deprecated and will be removed in Rails 6.0. Please use successful? as provided by Rack::Response::Helpers. ```
-
Vitali Tatarintev authored
Fixes deprecation warning: ``` DEPRECATION WARNING: The success? predicate is deprecated and will be removed in Rails 6.0. Please use successful? as provided by Rack::Response::Helpers. ```
-
- 16 Jul, 2019 2 commits
-
-
Peter Leitzen authored
Prefer `json_response` where applicable.
-
Peter Leitzen authored
Prefer `json_response` where applicable.
-
- 15 Apr, 2019 1 commit
-
-
gfyoung authored
Adds frozen string to the following: * spec/bin/**/*.rb * spec/config/**/*.rb * spec/controllers/**/*.rb xref https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
-
- 09 Apr, 2019 2 commits
-
-
Imre Farkas authored
Move Contribution Analytics related spec in spec/features/groups/group_page_with_external_authorization_service_spec to EE
-
Imre Farkas authored
...instead of EEExternalAuthorizationServiceHelpers
-
- 05 Apr, 2019 2 commits
-
-
Andreas Brandl authored
This reverts merge request !26823
-
Imre Farkas authored
Move Contribution Analytics related spec in spec/features/groups/group_page_with_external_authorization_service_spec to EE
-
- 24 Jan, 2019 1 commit
-
-
Jacopo authored
Adds to search ILIKE search for milestones title in: - Milestones dashboard - Group milestones page - Project milestones page
-
- 20 Dec, 2018 1 commit
-
-
Fatih Acet authored
One of the steps to deprecate dashboard milestones. Links do dashboard milestone are replaced with links for each project milestone
-
- 19 Dec, 2018 1 commit
-
-
Fatih Acet authored
One of the steps to deprecate dashboard milestones. Links do dashboard milestone are replaced with links for each project milestone.
-
- 18 Dec, 2018 2 commits
-
-
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 }`
-
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 }`
-
- 01 Nov, 2018 1 commit
-
-
George Tsiolis authored
-
- 06 Aug, 2018 1 commit
-
-
Felipe Artur authored
-
- 11 Jul, 2018 2 commits
- 22 Dec, 2017 2 commits
-
-
blackst0ne authored
-
Vitaliy @blackst0ne Klachkov authored
-
- 23 Oct, 2017 1 commit
-
-
Jacopo authored
-
- 20 Oct, 2017 1 commit
-
-
Jacopo authored
-
- 02 Aug, 2017 2 commits
-
-
Robert Speicher authored
-
Robert Speicher authored
-
- 07 Jul, 2017 1 commit
-
-
Felipe Artur authored
-
- 26 Jun, 2017 1 commit
-
-
Takuya Noguchi authored
-
- 19 May, 2017 2 commits
-
-
Michael Kozono authored
-
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 `/…`.
-
- 26 Apr, 2017 1 commit
-
-
Phil Hughes authored
-
- 25 Jan, 2017 1 commit
-
-
Robert Speicher authored
-
- 09 Aug, 2016 2 commits
-
-
tiagonbotelho authored
-
tiagonbotelho authored
-
- 07 Apr, 2016 1 commit
-
-
Felipe Artur authored
-
- 05 Apr, 2016 2 commits
-
-
Felipe Artur authored
-
Felipe Artur authored
-
- 05 Dec, 2015 1 commit
-
-
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
-