summaryrefslogtreecommitdiff
path: root/app/services/boards/issues
Commit message (Collapse)AuthorAgeFilesLines
* Replace `.exists` with `EXISTS ()`Jan Provaznik2018-05-281-5/+3
| | | | | `.exists` should not be used because it's an internal ActiveRecord method, but we can easily generate the same sql query with `EXISTS`.
* Bring CE-EE parity to app/services/boards/issues/create_service.rbrs-boards-issues-create-service-parityRobert Speicher2018-05-221-1/+5
|
* Fix more specsFelipe Artur2018-04-051-1/+1
|
* Show issues of subgroups in group-level issue boardFelipe Artur2018-04-051-0/+5
|
* Fix 404 in group boards when moving issue between listsissue_44551Felipe Artur2018-04-031-1/+4
|
* Bring one group board to CEFelipe Artur2018-03-032-2/+8
|
* [CE-Backport] Fix board filter when milestone is predefinedee-backport-issue_40654Felipe Artur2017-12-051-4/+5
|
* Small fixesFelipe Artur2017-08-311-1/+1
|
* Group boards CE backportFelipe Artur2017-08-283-16/+24
|
* Clear issuable counter caches on updateclear-issuable-count-cache-for-statesSean McGivern2017-07-191-5/+0
| | | | | | When an issuable's state changes, or one is created, we should clear the cache counts for a user's assigned issuables, and also the project-wide caches for this user type.
* Fixed issue boards closed list not listing all issuesPhil Hughes2017-06-281-2/+10
| | | | | | This was a regression caused by the backlog list being re-added Closes #33850
* Expand/collapse close & backlog lists in issue boardsPhil Hughes2017-05-311-1/+1
| | | | | | | | | The closed & backlog lists in issue boards are no collapsible. They can be collapsed independently of each other & this selection is then saved to the browser through localStorage. When the page loads, the code gets the data from localStorage & determines whether to show or hide the list Closes #23917
* Enable the Style/TrailingCommaInArguments copRémy Coutable2017-05-101-1/+1
| | | | | | Use the EnforcedStyleForMultiline: no_comma option. Signed-off-by: Rémy Coutable <remy@rymai.me>
* Add board_move slash commandAlex Sanford2017-04-281-1/+1
|
* Change Done column to Closed in issue boardsblackst0ne2017-03-242-3/+3
|
* Display all closed issues in “done” board listJarka Kadlecova2017-03-231-1/+1
|
* Preserve order by priority on issues boardpreserve_order_issue_boardValery Sizov2017-03-141-1/+1
|
* [Issue sorting on board] Addressing review issuesValery Sizov2017-03-031-4/+2
|
* Address review commentsValery Sizov2017-03-021-0/+1
|
* Allow issues in boards to be orderedDouwe Maan2017-02-172-13/+23
|
* Reuse endpoint to list issues for a list instead of create a new oneDouglas Barbosa Alexandre2017-02-031-4/+10
|
* Remove Boards::BaseServiceDouglas Barbosa Alexandre2016-10-113-3/+3
|
* Refactoring service to create a new issue in a board listDouglas Barbosa Alexandre2016-10-111-4/+11
|
* Removes all labels from project boards when moving and issue to doneDouglas Barbosa Alexandre2016-10-111-1/+1
|
* Update Boards::Issues::MoveService to move issues on a specific boardDouglas Barbosa Alexandre2016-10-111-0/+4
|
* Update Boards::Issues::ListService to list issues for a board listDouglas Barbosa Alexandre2016-10-111-0/+4
|
* Merge branch 'issue-boards-new-issue' into 'master' Fatih Acet2016-10-061-0/+16
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Issue boards new issue form ## What does this MR do? Adds a new issue form into the issue boards lists. ## Screenshots (if relevant) ![Screen_Shot_2016-10-03_at_14.57.30](/uploads/17fe6cd37bd020a2ee1688e0b496c18f/Screen_Shot_2016-10-03_at_14.57.30.png) ![Screen_Shot_2016-10-03_at_14.57.32](/uploads/c3f12bcb9ff9a0e7ce5b0bb06dfb0dd7/Screen_Shot_2016-10-03_at_14.57.32.png) ## What are the relevant issue numbers? Part of #21219 See merge request !6653
| * Add service to create a new issue in a board listDouglas Barbosa Alexandre2016-10-061-0/+16
| |
* | Revert "Label list shows all issues (opened or closed) with that label"Douglas Barbosa Alexandre2016-10-061-6/+1
|/
* Label list shows all issues (opened or closed) with that labelDouglas Barbosa Alexandre2016-08-251-1/+6
|
* Validate if the lists are different when moving issues between listsDouglas Barbosa Alexandre2016-08-171-1/+2
|
* Inherit board related services from BaseServiceDouglas Barbosa Alexandre2016-08-172-3/+3
|
* Add a movable scope and a movable? method to List modelDouglas Barbosa Alexandre2016-08-172-5/+5
|
* Remove lookup inside services to keep them consistent with other onesDouglas Barbosa Alexandre2016-08-171-6/+2
|
* Use `Issues::UpdateService` to close/reopen an issueDouglas Barbosa Alexandre2016-08-171-21/+15
|
* Rename from/to params to from_list_id/to_list_idDouglas Barbosa Alexandre2016-08-171-2/+2
|
* Fix filtering issues by "No Label"Douglas Barbosa Alexandre2016-08-171-9/+9
|
* Add authorization to issues board related controllersDouglas Barbosa Alexandre2016-08-171-1/+0
|
* Removes all list-labels when moving to Backlog/DoneDouglas Barbosa Alexandre2016-08-171-2/+17
|
* Rename `list_id` param to `id` in Boards::Issues::ListServiceDouglas Barbosa Alexandre2016-08-171-1/+1
|
* Add endpoint to allow users to move issues between listsDouglas Barbosa Alexandre2016-08-171-2/+7
|
* Extract base service class for boards related servicesDouglas Barbosa Alexandre2016-08-172-22/+2
|
* Add service to list issues for a board listDouglas Barbosa Alexandre2016-08-171-0/+73
|
* Check if user can update the issue before moving it betweens listsDouglas Barbosa Alexandre2016-08-171-0/+1
|
* Add service to move issues between listsDouglas Barbosa Alexandre2016-08-171-0/+58