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
2022-08-11Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-07-05Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-02-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-02-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-02-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-01-25Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-11-02Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-01-28Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-08-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-08-05Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-04-21Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-23Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-07-25Remove code related to object hierarchy in MySQLHeinrich Lee Yu
These are not required because MySQL is not supported anymore
2019-07-22Removed project autocomplete paginationJan Provaznik
This pagination is not used anywhere so there is no reason to keep it. It seems the usage of offset_id was probably removed in 90c60138db4e1f86026aac5760febe4ba066ca30
2019-06-24Return all runner tags when search is emptyDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2019-04-12Only show in autocomplete when author activeWei-Meng Lee
2019-02-27make assertions on objects instead of tag namesAlexis Reigel
2019-02-27don't filter tags by taggable typeAlexis Reigel
Due to performance reasons we cannot use the type filter on the tags. The table for ActsAsTaggableOn is too big and too unoptimized, such that the queries time out on production. See the discussion https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/19740#note_120087938 for more info.
2019-02-27use lazy ajax filter dropdown for runner tagsAlexis Reigel
the potential number of available runner tags is too large to load it statically to a dropdown. we use the same lazy loaded dropdown as is used for the users dropdown already.
2018-08-20Refactor AutocompleteControllerYorick Peterse
This refactors the AutocompleteController according to the guidelines and boundaries discussed in https://gitlab.com/gitlab-org/gitlab-ce/issues/49653. Specifically, ActiveRecord logic is moved to different finders, which are then used in the controller. View logic in turn is moved to presenters, instead of directly using ActiveRecord's "to_json" method. The finder MoveToProjectFinder is also adjusted according to the abstraction guidelines and boundaries, resulting in a much more simple finder. By using finders (and other abstractions) more actively, we can push a lot of logic out of the controller. We also remove the need for various "before_action" hooks, though this could be achieved without using finders as well. The various finders related to AutcompleteController have also been moved into a namespace. This removes the need for calling everything "AutocompleteSmurfFinder", instead you can use "Autocomplete::SmurfFinder".