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
diff options
context:
space:
mode:
authorYorick Peterse <yorickpeterse@gmail.com>2017-05-03 15:49:37 +0300
committerYorick Peterse <yorickpeterse@gmail.com>2017-05-17 21:53:16 +0300
commit34974258bc3f745c86512319231bad47232fe007 (patch)
treea6b9b7d7a80282f77471302f0970daced62e0455 /lib/gitlab/project_authorizations
parentac382b5682dc2d5eea750313c59fb2581af13326 (diff)
Hide nested group UI/API support for MySQL
This hides/disables some UI elements and API parameters related to nested groups when MySQL is used, since nested groups are not supported for MySQL.
Diffstat (limited to 'lib/gitlab/project_authorizations')
-rw-r--r--lib/gitlab/project_authorizations/with_nested_groups.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/gitlab/project_authorizations/with_nested_groups.rb b/lib/gitlab/project_authorizations/with_nested_groups.rb
index 79c082c08fd..bb0df1e3dad 100644
--- a/lib/gitlab/project_authorizations/with_nested_groups.rb
+++ b/lib/gitlab/project_authorizations/with_nested_groups.rb
@@ -19,9 +19,6 @@ module Gitlab
projects = Project.arel_table
links = ProjectGroupLink.arel_table
- # These queries don't directly use the user object so they don't depend
- # on the state of said object, ensuring the produced queries are always
- # the same.
relations = [
# The project a user has direct access to.
user.projects.select_for_project_authorization,