summaryrefslogtreecommitdiff
path: root/app/services/boards
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@13-12-stable-eev13.12.0-rc42GitLab Bot2021-05-1914-49/+73
|
* Add latest changes from gitlab-org/gitlab@13-11-stable-eev13.11.0-rc43GitLab Bot2021-04-207-74/+94
|
* Add latest changes from gitlab-org/gitlab@13-10-stable-eev13.10.0-rc40GitLab Bot2021-03-168-119/+128
|
* Add latest changes from gitlab-org/gitlab@13-9-stable-eev13.9.0-rc42GitLab Bot2021-02-185-71/+80
|
* Add latest changes from gitlab-org/gitlab@13-8-stable-eev13.8.0-rc42Robert Speicher2021-01-202-100/+139
|
* Add latest changes from gitlab-org/gitlab@13-7-stable-eev13.7.0-rc42GitLab Bot2020-12-172-13/+21
|
* Add latest changes from gitlab-org/gitlab@13-5-stable-eev13.5.0-rc42GitLab Bot2020-10-213-7/+24
|
* Add latest changes from gitlab-org/gitlab@13-4-stable-eeGitLab Bot2020-09-192-2/+10
|
* Add latest changes from gitlab-org/gitlab@13-3-stable-eeGitLab Bot2020-08-204-19/+47
|
* Add latest changes from gitlab-org/gitlab@13-0-stable-eeGitLab Bot2020-05-202-9/+6
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-311-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-111-0/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-131-7/+14
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-121-1/+21
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-251-2/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-171-4/+13
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-021-0/+4
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-11-201-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-09-271-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-09-252-5/+17
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-09-231-7/+3
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-09-231-2/+4
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-09-139-0/+18
|
* Save board lists collapsed settingFelipe Artur2019-08-282-1/+57
| | | | Persists if a board list is collapsed for each user.
* Add result to MoveService#execute_multiplePatrick Derichs2019-07-161-7/+32
| | | | | | | | It adds a hash response which includes the count, success state and the moved issues itself so the caller has additional information about the result of the process.
* Add endpoint to move multiple issues35757-move-issues-in-boards-pderichsPatrick Derichs2019-07-111-7/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add specs for new endpoint to move multiple issues. Add changelog entry Just check the first issue for the ability to move / update Add specs for exceeding limits and malformed requests Changed name of shared examples Change title of changelog entry Use %i instead of %w Check permission to update issue on project instead of board Use admin_issue permission to check for issue move ability Changed variable name to avoid shadow issue_params method Rename route to bulk_move Change route definition Check permissions for each issue Combine methods for parameters permit check Remove extra context Change description of context Check param for type Array Add unit tests to MoveService Use before_action for permission check Use set instead of let! Use let's instead of set
* Move Multiple Issue Boards for Projects to Core53811-issue-boards-to-core-projects-backend-ceAlexandru Croitor2019-06-264-20/+21
| | | | | Refactor code to allow multiple issue boards management for projects in CE
* Add reorder action to Project IssuesControllerbw-issue-reorderBrett Walker2019-06-211-2/+4
| | | | to support manual sorting on the frontend
* Adds the Rubocop ReturnNil copAndrew Newdigate2019-03-061-1/+1
| | | | | This style change enforces `return if ...` instead of `return nil if ...` to save maintainers a few minor review points
* CE-port for 7714-view-recent-boardsHeinrich Lee Yu2019-03-011-5/+7
| | | | Adds additional count param to Boards::Visits::LatestService
* Enable the Layout/ExtraSpacing cop56392-enable-the-layout-extraspacing-copRémy Coutable2019-01-242-2/+2
| | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* Fixed label removal from issueccr/51052_keep_labels_on_issueChantal Rollison2018-11-051-3/+1
|
* Automatically navigate to last board visitedBrett Walker2018-10-262-0/+34
|
* Add preload in issues controllerChantal Rollison2018-10-181-1/+1
|
* Merge branch 'fix-rubocop-todo' into 'master'Douglas Barbosa Alexandre2018-09-191-1/+1
|\ | | | | | | | | Fix rubocop Style/ZeroLengthPredicate See merge request gitlab-org/gitlab-ce!21793
| * Fix rubocop Style/ZeroLengthPredicateSemyon Pupkov2018-09-181-1/+1
| |
* | Filter out archived issues from group issue boardBrett Walker2018-09-141-0/+5
|/
* Disable existing offenses for the CodeReuse copsYorick Peterse2018-09-114-0/+24
| | | | | This whitelists all existing offenses for the various CodeReuse cops, of which most are triggered by the CodeReuse/ActiveRecord cop.
* [Backport] View summed weights of issues in board columnFelipe Artur2018-07-301-3/+24
|
* Enable frozen string in apps/services/**/*.rbrepo-forks/gitlab-ce-frozen-string-enable-apps-services-innergfyoung2018-07-1611-0/+22
| | | | | | For directories application_settings --> labels. Partially addresses #47424.
* Backport of "Add assignee lists to boards"Mario de la Ossa2018-06-073-21/+26
|
* 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
|
* Merge branch 'issue_44551' into 'master'Sean McGivern2018-04-051-1/+4
|\ | | | | | | | | | | | | Fix 404 in group boards when moving issue between lists Closes #44551 See merge request gitlab-org/gitlab-ce!18064
| * Fix 404 in group boards when moving issue between listsissue_44551Felipe Artur2018-04-031-1/+4
| |
* | Allow assigning and filtering issuables by ancestor group labelsFelipe Artur2018-04-041-2/+6
| |
* | [Backport] Order boards alphabeticallyosw-order-boards-by-nameoswaldoferreira2018-03-281-1/+5
|/
* Bring one group board to CEFelipe Artur2018-03-033-3/+13
|