summaryrefslogtreecommitdiff
path: root/app/models/ci/project_mirror.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/ci/project_mirror.rb')
-rw-r--r--app/models/ci/project_mirror.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/models/ci/project_mirror.rb b/app/models/ci/project_mirror.rb
index 9000d1791a6..15a161d5b7c 100644
--- a/app/models/ci/project_mirror.rb
+++ b/app/models/ci/project_mirror.rb
@@ -4,6 +4,8 @@ module Ci
# This model represents a shadow table of the main database's projects table.
# It allows us to navigate the project and namespace hierarchy on the ci database.
class ProjectMirror < ApplicationRecord
+ include FromUnion
+
belongs_to :project
scope :by_namespace_id, -> (namespace_id) { where(namespace_id: namespace_id) }