summaryrefslogtreecommitdiff
path: root/app/controllers/groups/milestones_controller.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@12-8-stable-eeGitLab Bot2020-02-201-3/+10
|
* Add latest changes from gitlab-org/gitlab@12-7-stable-eeGitLab Bot2020-01-211-1/+3
|
* Add latest changes from gitlab-org/gitlab@12-4-stable-eeGitLab Bot2019-10-221-1/+1
|
* Hide disabled project milestones in project settings on group levelAlexandru Croitor2019-09-231-4/+8
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-09-131-0/+2
|
* Adds milestone searchJacopo2019-01-241-1/+1
| | | | | | | Adds to search ILIKE search for milestones title in: - Milestones dashboard - Group milestones page - Project milestones page
* Add project milestone link to dashboard milestonesccr/49289_milestone_linkFatih Acet2018-12-201-8/+13
| | | | | | One of the steps to deprecate dashboard milestones. Links do dashboard milestone are replaced with links for each project milestone
* Update code according comment recommendationsEagllus2018-10-161-1/+1
|
* Enable more frozen string in app/controllers/gfyoung2018-09-231-0/+2
| | | | | | | | | | | | | | | | Enables frozen string for the following: * app/controllers/dashboard/**/*.rb * app/controllers/explore/**/*.rb * app/controllers/google_api/**/*.rb * app/controllers/groups/**/*.rb * app/controllers/import/**/*.rb * app/controllers/instance_statistics/**/*.rb * app/controllers/ldap/**/*.rb * app/controllers/oauth/**/*.rb * app/controllers/profiles/**/*.rb Partially addresses #47424.
* Allow to delete group milestonesissue_36138Felipe Artur2018-08-061-3/+14
|
* Backport changes to app/controllers/groups/milestones_controller.rb5941-extract-ee-controllersMario de la Ossa2018-06-041-1/+4
|
* Show issues of subgroups in group-level issue boardFelipe Artur2018-04-051-1/+1
|
* Merge branch 'milestones-finder-order-fix' into 'security-10-3'Robert Speicher2018-01-161-2/+4
| | | | | | | | | | Remove order param from the MilestoneFinder See merge request gitlab/gitlabhq!2259 (cherry picked from commit 14408042e78f2ebc2644f956621b461dbfa3d36d) 155881e7 Remove order param from the MilestoneFinder
* Add Group Milestone sortingGeorge Andrinopoulos2017-11-071-1/+2
|
* replace `is_legacy_group_milestone?` with `legacy_group_milestone?`Maxim Rydkin2017-08-291-3/+3
|
* Native group milestonesFelipe Artur2017-07-071-35/+42
|
* Add JSON support to group milestonesTakuya Noguchi2017-06-271-0/+3
|
* Load milestone tabs asynchronouslyPhil Hughes2017-04-261-1/+3
|
* Add count badges to both dashboard and group milestonesadam-count-badges-group-dashboard-milestonesAlex Braha Stoll2017-03-101-0/+1
|
* Speed up group milestone index by passing group_id to IssuesFinderAdam Niedzielski2017-01-061-2/+9
|
* Add a starting date to milestonesmilestone_start_dateValery Sizov2016-11-231-1/+1
|
* Require projects before creating milestonegfyoung2016-11-101-1/+1
|
* Implement review suggestionsFelipe Artur2016-04-071-5/+3
|
* Improve codeFelipe Artur2016-04-051-16/+13
|
* Improve codeFelipe Artur2016-04-051-7/+15
|
* Fix problem when creating milestones in groups without projectsFelipe Artur2016-04-051-5/+23
|
* Use respond_to instead of a conditional to paginate milestonesRémy Coutable2016-03-231-1/+5
|
* Tweaks, refactoring, and specsDouwe Maan2016-03-201-8/+4
|
* Fix Error 500 when creating global milestones with Unicode charactersStan Hu2015-12-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Group masters should be able to create/close milestonesDmitriy Zaporozhets2015-11-161-1/+1
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Refactor global and group milestones logicDmitriy Zaporozhets2015-11-161-44/+19
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Create milestones in the groupDmitriy Zaporozhets2015-11-161-5/+31
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Add a page title to every page.Douwe Maan2015-04-301-3/+1
|
* Fixed the Rails/ActionFilter copJeroen van Baarsen2015-04-201-1/+1
| | | | Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com>
* Rename manage_group ability to admin_group for consistency with project.Douwe Maan2015-04-141-1/+1
|
* Use same constant for amount of items per pageDmitriy Zaporozhets2015-03-121-1/+1
|
* Add dashboard milestones.Douwe Maan2015-03-031-5/+5
|
* Improve performance, ordering and pagination for group milestones.Marin Jankovski2014-07-041-10/+12
|
* Add feature tests for group milestone.Marin Jankovski2014-06-301-1/+1
|
* Show all issues and merge requests that could be considered opened or ↵Marin Jankovski2014-06-301-2/+0
| | | | closed, includes reopened and merged.
* Correct authorization for group milestones.Marin Jankovski2014-06-301-0/+6
|
* Move milestone link in group head, 2 column milestone for MR and issues.Marin Jankovski2014-06-301-2/+2
|
* Start building group milestone show page.Marin Jankovski2014-06-301-2/+4
|
* Get one group milestone based on milestone title.Marin Jankovski2014-06-301-9/+13
|
* Close and reopen group milestones.Marin Jankovski2014-06-301-3/+26
|
* Filter group milestones.Marin Jankovski2014-06-301-0/+10
|
* Move group milestone processing from service to model.Marin Jankovski2014-06-301-2/+1
|
* Create group milestones service.Marin Jankovski2014-06-301-0/+2
|
* Show title of milestone.Marin Jankovski2014-06-301-0/+3
|
* Add group milestones routes and controller.Marin Jankovski2014-06-301-0/+7