diff options
author | Sam Battalio <sambattalio99@gmail.com> | 2019-06-24 22:12:42 +0000 |
---|---|---|
committer | Nick Thomas <nick@gitlab.com> | 2019-06-24 22:12:42 +0000 |
commit | 3457695b1e3d2c6e5a10cff6e24a08f7cbb38503 (patch) | |
tree | a57f3cc980e709155034e12fa75063a1d9abf02a /lib/api/helpers.rb | |
parent | 9e6c3f56fdc90d743db5af12414e955d7a101e5e (diff) | |
download | gitlab-ce-3457695b1e3d2c6e5a10cff6e24a08f7cbb38503.tar.gz |
Change HTTP Status Code when repository disabled
Diffstat (limited to 'lib/api/helpers.rb')
-rw-r--r-- | lib/api/helpers.rb | 4 |
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') |