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/models/remote_mirror.rb')
-rw-r--r--app/models/remote_mirror.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/models/remote_mirror.rb b/app/models/remote_mirror.rb
index 8b2f3bdcedf..934053cb92d 100644
--- a/app/models/remote_mirror.rb
+++ b/app/models/remote_mirror.rb
@@ -137,6 +137,7 @@ class RemoteMirror < ApplicationRecord
return false unless project.remote_mirror_available?
return false unless project.repository_exists?
return false if project.pending_delete?
+ return false if Gitlab::SilentMode.enabled?
true
end