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-07-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-26Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-05-06Remove duplicate clusterable presenter methodJames Fargher
2019-05-06Show health graphs on group-levelPeter Leitzen
Tweak cluster helper and refactor its specs.
2019-03-05Sends update route to the clientJoão Cunha
- extends presenters to include update endpoint path - sends path to the client on clusters clusters show view.
2018-11-08Reverse view override as EE has an override tooThong Kuah
Use presenters instead otherwise we will have x2 overides in EE
2018-11-08Refactor to use presenterThong Kuah
Refacotr project or group specific `if` logic to be contained within each presenter instead. Also add :override to ensure super method exists.
2018-11-08Rename is_project? to project?Mike Greiling
2018-11-08Update empty state for group clusters indexMike Greiling
2018-11-02Use polymorphic_paths where we canThong Kuah
To reduce the number of abstract methods, use polymorphic_paths for collection routes. Unfortunately for member routes, polymorphic_paths does not support namespaced classes, so still continue to override methods.
2018-11-01Resolve controller sharing concernThong Kuah
Use ClustersController as base while having Projects::ClustersController to inform what `clusterable` is. Thanks @ayufan for the great suggestion ! - View changes to work with new approach - Fix javascript for new approach - Fix feature specs for new approach - Fix QA
2018-11-01Move view and path concerns to presentersThong Kuah
- Move show path for cluster to ClusterPresenter - Create ClusterablePresenter to encapsulate logic. Consolidates scattered methods from BaseController and ClustersHelper into an object.