gitlabhq/app/workers/post_receive.rb
2012-01-04 00:42:14 +02:00

11 lines
234 B
Ruby

class PostReceive
@queue = :post_receive
def self.perform(reponame, oldrev, newrev, ref)
project = Project.find_by_path(reponame)
return false if project.nil?
project.execute_web_hooks(oldrev, newrev, ref)
end
end