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
2018-04-18Revert "Don't include projects shared as group-descendants"Bob Van Landuyt
This reverts commit 2c3c5b35549185080296670cfe6710aa80f99944. Revisit this after https://gitlab.com/gitlab-org/gitlab-ce/issues/45441
2018-01-22Preload ancestors for subgroups matching filterBob Van Landuyt
Otherwise we'd only preload the ancestors that would fit the page. That way, when a search result was on the first page, but the ancestor didn't fit the page anymore. We would not have the preloaded ancestor when rendering the hierarchy.
2018-01-22Don't include projects shared as group-descendantsBob Van Landuyt
When a project is shared with a group, it should not be included as a descendant on the group dashboard.
2017-12-20Enable sorting by name in the Groups dropdownMark Fletcher
2017-10-11Handle archived projects in the `GroupDescendantsFinder`Bob Van Landuyt
2017-10-10Don't load unneeded elements in GroupsController#showBob Van Landuyt
2017-10-10Use `EXISTS` instead of `WHERE id IN (...)` for authorized groupsBob Van Landuyt
2017-10-05Load counts everywhere we render a group treeBob Van Landuyt
2017-10-04Make sure the user only sees groups he's allowed to seeBob Van Landuyt
2017-10-04Minimize the number of queries by preloading counts and ancestorsBob Van Landuyt
By preloading the count of members, projects and subgroups of a group, we don't need to query them later. We also preload the entire hierarchy for a search result and include the counts so we don't need to query for them again
2017-10-04Only take unarchived projects into accountBob Van Landuyt
When finding children for a group
2017-10-04Rename `GroupHierarchy` to `GroupDescendant`Bob Van Landuyt