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
2017-10-12Pass `archived:` as a keyword argumentBob Van Landuyt
2017-10-11Handle archived projects in the `GroupDescendantsFinder`Bob Van Landuyt
2017-10-10Use the `GroupProjectsFinder` to find direct childrenBob Van Landuyt
2017-10-10Some cleanup in the GroupDescendantFinderBob 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-05Optimize queries and pagination in `GroupDescendantsFinder`Bob Van Landuyt
2017-10-04Split up adding ancestors for projectsBob Van Landuyt
2017-10-04Fix bug with project paginationBob Van Landuyt
When projects were listed after groups, the projects that would also have been listed on the last page containing groups would be repeated.
2017-10-04Improve count queries and move them to contantsBob Van Landuyt
2017-10-04Only preload ancestors for search results in the specified parentBob Van Landuyt
When filtering we want all to preload all the ancestors upto the specified parent group. - root - subgroup - nested-group - project So when searching 'project', on the 'subgroup' page we want to preload 'nested-group' but not 'subgroup' or 'root'
2017-10-04Make sure all queries are limited to the page sizeBob Van Landuyt
And fix some pagination bugs
2017-10-04Make sure the user only sees groups he's allowed to seeBob Van Landuyt
2017-10-04Fix nesting bug when rendering children of a shared subgroupBob 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-04Improve number of queriesBob Van Landuyt
And document what extra queries are still being performed.
2017-10-04Rename `GroupHierarchy` to `GroupDescendant`Bob Van Landuyt