-
- Downloads
Merge branch 'dz-bulk-edit-mr' into 'master'
Add bulk update support for merge requests list ## What does this MR do? Adds new feature: ability to update multiple merge requests at once from index page (same like we have for issues already) ## Are there points in the code the reviewer needs to double check? I don't think so ## Why was this MR needed? * consistency with issues * save user time when you want set same label/milestone to 20 merge requests ## Screenshots (if relevant)  ## Does this MR meet the acceptance criteria? - [x] [CHANGELOG](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG) entry added - [x] ~~[Documentation created/updated](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/development/doc_styleguide.md)~~ - [x] ~~API support added~~ - Tests - [x] Added for this feature/bug - [x] All builds are passing - [x] Conform by the [merge request performance guides](http://docs.gitlab.com/ce/development/merge_request_performance_guidelines.html) - [x] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides) - [x] Branch has no merge conflicts with `master` (if you do - rebase it please) - [x] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits) ## What are the relevant issue numbers? Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/20087 See merge request !6226
No related branches found
No related tags found
Showing
- CHANGELOG 1 addition, 0 deletionsCHANGELOG
- app/assets/javascripts/dispatcher.js 1 addition, 4 deletionsapp/assets/javascripts/dispatcher.js
- app/assets/javascripts/issuable.js.es6 1 addition, 1 deletionapp/assets/javascripts/issuable.js.es6
- app/assets/javascripts/issues-bulk-assignment.js 2 additions, 2 deletionsapp/assets/javascripts/issues-bulk-assignment.js
- app/assets/stylesheets/pages/issuable.scss 15 additions, 0 deletionsapp/assets/stylesheets/pages/issuable.scss
- app/assets/stylesheets/pages/issues.scss 0 additions, 11 deletionsapp/assets/stylesheets/pages/issues.scss
- app/controllers/concerns/issuable_actions.rb 32 additions, 1 deletionapp/controllers/concerns/issuable_actions.rb
- app/controllers/projects/issues_controller.rb 0 additions, 26 deletionsapp/controllers/projects/issues_controller.rb
- app/services/issuable/bulk_update_service.rb 26 additions, 0 deletionsapp/services/issuable/bulk_update_service.rb
- app/services/issues/bulk_update_service.rb 0 additions, 25 deletionsapp/services/issues/bulk_update_service.rb
- app/views/projects/issues/_issue.html.haml 2 additions, 2 deletionsapp/views/projects/issues/_issue.html.haml
- app/views/projects/issues/_issues.html.haml 1 addition, 1 deletionapp/views/projects/issues/_issues.html.haml
- app/views/projects/issues/index.html.haml 2 additions, 0 deletionsapp/views/projects/issues/index.html.haml
- app/views/projects/merge_requests/_merge_request.html.haml 4 additions, 0 deletionsapp/views/projects/merge_requests/_merge_request.html.haml
- app/views/projects/merge_requests/_merge_requests.html.haml 1 addition, 1 deletionapp/views/projects/merge_requests/_merge_requests.html.haml
- app/views/projects/merge_requests/index.html.haml 2 additions, 0 deletionsapp/views/projects/merge_requests/index.html.haml
- app/views/shared/issuable/_filter.html.haml 8 additions, 6 deletionsapp/views/shared/issuable/_filter.html.haml
- config/routes.rb 1 addition, 0 deletionsconfig/routes.rb
- features/steps/project/merge_requests.rb 3 additions, 1 deletionfeatures/steps/project/merge_requests.rb
- spec/features/merge_requests/update_merge_requests_spec.rb 132 additions, 0 deletionsspec/features/merge_requests/update_merge_requests_spec.rb
app/services/issuable/bulk_update_service.rb
0 → 100644
Please register or sign in to comment