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:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-05-30 12:09:35 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-05-30 12:09:35 +0300
commitbf774d67fc8a84f76f20494c318d7cfacb0c69ac (patch)
treeb991cad6b68560d19f8ce3075577aab2eb51fae6 /app/models/repository.rb
parent50f0475ee134da9ea12e758a9f3250f2ab19cd65 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/models/repository.rb')
-rw-r--r--app/models/repository.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/models/repository.rb b/app/models/repository.rb
index c6bfd69f4e6..0135020e586 100644
--- a/app/models/repository.rb
+++ b/app/models/repository.rb
@@ -176,8 +176,8 @@ class Repository
end
# Returns a list of commits that are not present in any reference
- def new_commits(newrev, allow_quarantine: false)
- commits = raw.new_commits(newrev, allow_quarantine: allow_quarantine)
+ def new_commits(newrev)
+ commits = raw.new_commits(newrev)
::Commit.decorate(commits, container)
end