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:
Diffstat (limited to 'app/services/base_container_service.rb')
-rw-r--r--app/services/base_container_service.rb9
1 files changed, 8 insertions, 1 deletions
diff --git a/app/services/base_container_service.rb b/app/services/base_container_service.rb
index 6852237dc25..ee15763ce65 100644
--- a/app/services/base_container_service.rb
+++ b/app/services/base_container_service.rb
@@ -1,6 +1,13 @@
# frozen_string_literal: true
-# Base class, scoped by container (project or group)
+# Base class, scoped by container (project or group).
+#
+# New or existing services which only require project as a container
+# should subclass BaseProjectService.
+#
+# If you require a different but specific, non-polymorphic container (such
+# as group), consider creating a new subclass such as BaseGroupService,
+# and update the related comment at the top of the original BaseService.
class BaseContainerService
include BaseServiceUtility