gitlabhq/app/workers/post_receive.rb

14 lines
370 B
Ruby
Raw Normal View History

class PostReceive
2012-01-03 23:42:14 +01:00
@queue = :post_receive
def self.perform(reponame, oldrev, newrev, ref, author_key_id)
project = Project.find_by_path(reponame)
return false if project.nil?
2012-02-29 22:04:09 +01:00
# Ignore push from non-gitlab users
return false unless Key.find_by_identifier(author_key_id)
project.trigger_post_receive(oldrev, newrev, ref, author_key_id)
end
end