Fixed tests. removed delegate to id

This commit is contained in:
Dmitriy Zaporozhets 2012-02-29 23:04:09 +02:00
parent bb164ebf1b
commit 25bde28d13
6 changed files with 27 additions and 13 deletions

View file

@ -5,6 +5,9 @@ class PostReceive
project = Project.find_by_path(reponame)
return false if project.nil?
# Ignore push from non-gitlab users
return false unless Key.find_by_identifier(author_key_id)
project.observe_push(oldrev, newrev, ref, author_key_id)
project.execute_web_hooks(oldrev, newrev, ref, author_key_id)
end