summaryrefslogtreecommitdiff
path: root/app/controllers/boards
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@14-3-stable-eev14.3.0-rc42GitLab Bot2021-09-201-3/+1
|
* Add latest changes from gitlab-org/gitlab@14-1-stable-eev14.1.0-rc42GitLab Bot2021-07-201-1/+1
|
* Add latest changes from gitlab-org/gitlab@13-12-stable-eev13.12.0-rc42GitLab Bot2021-05-192-5/+7
|
* Add latest changes from gitlab-org/gitlab@13-11-stable-eev13.11.0-rc43GitLab Bot2021-04-201-3/+3
|
* Add latest changes from gitlab-org/gitlab@13-7-stable-eev13.7.0-rc42GitLab Bot2020-12-171-4/+4
|
* Add latest changes from gitlab-org/gitlab@13-5-stable-eev13.5.0-rc42GitLab Bot2020-10-212-1/+5
|
* Add latest changes from gitlab-org/gitlab@13-0-stable-eeGitLab Bot2020-05-201-3/+0
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-311-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-301-5/+10
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-171-3/+9
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-121-0/+3
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-151-11/+18
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-021-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-11-201-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-10-301-3/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-10-172-3/+3
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-09-271-1/+6
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-09-251-1/+5
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-09-182-3/+3
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-09-131-0/+2
|
* Save board lists collapsed settingFelipe Artur2019-08-281-10/+14
| | | | Persists if a board list is collapsed for each user.
* Fix bug when moving batches of items to the endrename-relative-position-move-to-endHeinrich Lee Yu2019-08-011-1/+1
| | | | | | | Starts from START_POSITION when there are no existing positions. Also improves the test to actually test the behavior
* Add result to MoveService#execute_multiplePatrick Derichs2019-07-161-5/+2
| | | | | | | | 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-3/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Extract code into IssueBoardEntityBrett Walker2018-12-041-11/+5
|
* Revert "Extract code into IssueBoardEntity"revert_issue_board_entityThong Kuah2018-11-091-5/+11
| | | | This reverts commit 8c126525faba40032244328187ba73a53b6eaf4c.
* Extract code into IssueBoardEntityBrett Walker2018-11-061-11/+5
|
* Add preload in issues controllerChantal Rollison2018-10-181-9/+8
|
* Enable frozen string in app/controllers/**/*.rbrepo-forks/gitlab-ce-frozen-string-app-controllergfyoung2018-09-183-0/+6
| | | | | | | | | | | | Enables frozen string for the following: * app/controllers/*.rb * app/controllers/admin/**/*.rb * app/controllers/boards/**/*.rb * app/controllers/ci/**/*.rb * app/controllers/concerns/**/*.rb Partially addresses #47424.
* Disable existing offenses for the CodeReuse copsYorick Peterse2018-09-111-0/+2
| | | | | 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-6/+11
|
* Backport of "Add assignee lists to boards"Mario de la Ossa2018-06-071-3/+11
|
* Add :weight as an allowed serializable field in ↵Rémy Coutable2018-05-161-1/+1
| | | | | | app/controllers/boards/issues_controller.rb Signed-off-by: Rémy Coutable <remy@rymai.me>
* Show issues of subgroups in group-level issue boardFelipe Artur2018-04-051-1/+2
|
* Address review commentsFelipe Artur2018-03-051-7/+6
|
* Bring one group board to CEFelipe Artur2018-03-031-3/+15
|
* Port `read_cross_project` ability from EEBob Van Landuyt2018-02-221-1/+1
|
* Track and act upon the number of executed queriesquery-countsYorick Peterse2018-02-011-0/+6
| | | | | | | | | | | This ensures that we have more visibility in the number of SQL queries that are executed in web requests. The current threshold is hardcoded to 100 as we will rarely (maybe once or twice) change it. In production and development we use Sentry if enabled, in the test environment we raise an error. This feature is also only enabled in production/staging when running on GitLab.com as it's not very useful to other users.
* Add issue sidebar and toggle_subscription endpoint in board issues dataOswaldo Ferreira2017-11-201-0/+1
|
* Create idea of read-only databasetc-geo-read-only-ideaToon Claes2017-10-061-1/+1
| | | | | | | | | | | | In GitLab EE, a GitLab instance can be read-only (e.g. when it's a Geo secondary node). But in GitLab CE it also might be useful to have the "read-only" idea around. So port it back to GitLab CE. Also having the principle of read-only in GitLab CE would hopefully lead to less errors introduced, doing write operations when there aren't allowed for read-only calls. Closes gitlab-org/gitlab-ce#37534.
* fix another N+1 query for label priorities34510-board-issues-sql-speedupmicael.bergeron2017-09-121-2/+2
| | | | added a QueryRecorder for IssuesController#index.json
* add association preloading for issue boardsmicael.bergeron2017-09-121-4/+9
|
* Finish backports and fix specsFelipe Artur2017-09-061-1/+1
|
* Small fixesFelipe Artur2017-08-311-1/+1
|
* Continue BE backportFelipe Artur2017-08-312-0/+2
|
* Group boards CE backportFelipe Artur2017-08-283-0/+184