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:
authorSam Battalio <sambattalio99@gmail.com>2019-06-25 01:12:42 +0300
committerNick Thomas <nick@gitlab.com>2019-06-25 01:12:42 +0300
commit3457695b1e3d2c6e5a10cff6e24a08f7cbb38503 (patch)
treea57f3cc980e709155034e12fa75063a1d9abf02a /lib/api/helpers.rb
parent9e6c3f56fdc90d743db5af12414e955d7a101e5e (diff)
Change HTTP Status Code when repository disabled
Diffstat (limited to 'lib/api/helpers.rb')
-rw-r--r--lib/api/helpers.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/api/helpers.rb b/lib/api/helpers.rb
index 6382d295f79..8ae42c6dadd 100644
--- a/lib/api/helpers.rb
+++ b/lib/api/helpers.rb
@@ -250,6 +250,10 @@ module API
authorize! :update_build, user_project
end
+ def require_repository_enabled!(subject = :global)
+ not_found!("Repository") unless user_project.feature_available?(:repository, current_user)
+ end
+
def require_gitlab_workhorse!
unless env['HTTP_GITLAB_WORKHORSE'].present?
forbidden!('Request should be executed via GitLab Workhorse')