Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-01-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-10Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-16Add latest changes from gitlab-org/gitlab@masterogolowinski-master-patch-80898GitLab Bot
2019-10-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-24Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-08-28Save board lists collapsed settingFelipe Artur
Persists if a board list is collapsed for each user.
2019-07-25Remove code related to object hierarchy in MySQLHeinrich Lee Yu
These are not required because MySQL is not supported anymore
2019-07-16Add result to MoveService#execute_multiplePatrick Derichs
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.
2019-07-11Add endpoint to move multiple issuesPatrick Derichs
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
2019-06-26Move Multiple Issue Boards for Projects to CoreAlexandru Croitor
Refactor code to allow multiple issue boards management for projects in CE
2019-04-12Add frozen_string_literal to spec/servicesThong Kuah
Probably useful as we often move these files to "new" files.
2019-03-01CE-port for 7714-view-recent-boardsHeinrich Lee Yu
Adds additional count param to Boards::Visits::LatestService
2019-01-24Enable the Layout/ExtraSpacing copRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-10-26Automatically navigate to last board visitedBrett Walker
2018-09-15Filter out archived issues from group issue boardBrett Walker
2018-04-05Fix more specsFelipe Artur
2018-04-05Show issues of subgroups in group-level issue boardFelipe Artur
2018-04-03Fix 404 in group boards when moving issue between listsFelipe Artur
2018-03-03Bring one group board to CEFelipe Artur
2017-12-22Replace '.team << [user, role]' with 'add_role(user)' in specsblackst0ne
2017-08-31Backport specsFelipe Artur
2017-08-31Continue BE backportFelipe Artur
2017-08-03Change all `:empty_project` to `:project`Robert Speicher
2017-07-28Merge issuable "reopened" state into "opened"Yorick Peterse
Having two states that essentially mean the same thing is very much like having a boolean "true" and boolean "mostly-true": it's rather silly. This commit merges the "reopened" state into the "opened" state while taking care of system notes still showing messages along the lines of "Alice reopened this issue". A big benefit from having only two states (opened and closed) is that indexing and querying becomes simpler and more performant. For example, to get all the opened queries we no longer have to query both states: SELECT * FROM issues WHERE project_id = 2 AND state IN ('opened', 'reopened'); Instead we can query a single state directly, which can be much faster: SELECT * FROM issues WHERE project_id = 2 AND state = 'opened'; Further, only having two states makes indexing easier as we will only ever filter (and thus scan an index) using a single value. Partial indexes could help but aren't supported on MySQL, complicating the development process and not being helpful for MySQL.
2017-07-27Remove superfluous lib: true, type: redis, service: true, models: true, ↵Rémy Coutable
services: true, no_db: true, api: true Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-07-07This makes the `Boards::CreateService` more reusable for EEBob Van Landuyt
2017-06-28Fixed issue boards closed list not listing all issuesPhil Hughes
This was a regression caused by the backlog list being re-added Closes #33850
2017-06-07change tests based on backend feedbackPhil Hughes
2017-06-06updated service specPhil Hughes
2017-06-06moved creating backlog list into list servicePhil Hughes
2017-05-31spec updatesPhil Hughes
2017-03-24Change Done column to Closed in issue boardsblackst0ne
2017-03-23Display all closed issues in “done” board listJarka Kadlecova
2017-03-14Preserve order by priority on issues boardValery Sizov
2017-03-07[Issue Board Sorting] More accurate move through the listValery Sizov
2017-03-07Address review commentsValery Sizov
2017-03-06Addressing review commentsValery Sizov
2017-03-03[Issue sorting on board] Addressing review issuesValery Sizov
2017-02-28[Issue board sorting] SpecsValery Sizov
2017-02-03Reuse endpoint to list issues for a list instead of create a new oneDouglas Barbosa Alexandre
2017-02-03Remove backlog lists from board servicesDouglas Barbosa Alexandre
2016-10-19Allow user to create a board list based on a group labelDouglas Barbosa Alexandre
2016-10-11Fix typo on Boards::Issues::ListService specDouglas Barbosa Alexandre
2016-10-11Update board specs to use board factory instead of project_with_boardDouglas Barbosa Alexandre
2016-10-11Refactoring service to create a new issue in a board listDouglas Barbosa Alexandre
2016-10-11Fix rubocop offensesDouglas Barbosa Alexandre
2016-10-11Add Boards::ListService service to list project boardsDouglas Barbosa Alexandre
2016-10-11Removes all labels from project boards when moving and issue to doneDouglas Barbosa Alexandre
2016-10-11Update Boards::Issues::MoveService to move issues on a specific boardDouglas Barbosa Alexandre
2016-10-11Update Boards::Issues::ListService to list issues for a board listDouglas Barbosa Alexandre