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/commits.rb | |
parent | 9e6c3f56fdc90d743db5af12414e955d7a101e5e (diff) | |
download | gitlab-ce-3457695b1e3d2c6e5a10cff6e24a08f7cbb38503.tar.gz |
Change HTTP Status Code when repository disabled
Diffstat (limited to 'lib/api/commits.rb')
-rw-r--r-- | lib/api/commits.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/api/commits.rb b/lib/api/commits.rb index 80913f4ca07..eebded87ebc 100644 --- a/lib/api/commits.rb +++ b/lib/api/commits.rb @@ -6,7 +6,10 @@ module API class Commits < Grape::API include PaginationParams - before { authorize! :download_code, user_project } + before do + require_repository_enabled! + authorize! :download_code, user_project + end helpers do def user_access |