diff options
author | Tiago Botelho <tiagonbotelho@hotmail.com> | 2018-01-22 18:10:56 +0000 |
---|---|---|
committer | Tiago Botelho <tiagonbotelho@hotmail.com> | 2018-02-06 13:35:35 +0000 |
commit | bc78ae6985ee37f9ac2ffc2dbf6f445078d16038 (patch) | |
tree | 1b53d4292becd29f1fe37a4fbb3e1562b3b80c40 /app/controllers | |
parent | 32b2ff26011a5274bdb8a3dd41ad360a67c3148a (diff) | |
download | gitlab-ce-bc78ae6985ee37f9ac2ffc2dbf6f445078d16038.tar.gz |
Add specs
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/projects/git_http_controller.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/controllers/projects/git_http_controller.rb b/app/controllers/projects/git_http_controller.rb index 6010423c243..5660a9027d5 100644 --- a/app/controllers/projects/git_http_controller.rb +++ b/app/controllers/projects/git_http_controller.rb @@ -31,6 +31,8 @@ class Projects::GitHttpController < Projects::GitHttpClientController # POST /foo/bar.git/git-receive-pack" (git push) def git_receive_pack + raise Gitlab::GitAccess::NotFoundError, 'Could not create project' unless project + render_ok end |