Removes name from file

Changes `:not_found` to `nil`
This commit is contained in:
Jacob Schatz 2016-03-04 17:42:32 -05:00 committed by Phil Hughes
parent e33e0de24d
commit 1a482bfbc2
2 changed files with 2 additions and 4 deletions

View File

@ -1,5 +1,3 @@
# Written by GitLab @gitlab
((w) ->
notifyMe = (message,body, icon) ->
notification = undefined

View File

@ -233,8 +233,8 @@ class Projects::MergeRequestsController < Projects::ApplicationController
end
response = {
status: status || :not_found,
coverage: coverage || :not_found
status: status || nil,
coverage: coverage || nil
}
render json: response, status: 200