gitlabhq/app/models/system_hook.rb

19 lines
438 B
Ruby

# == Schema Information
#
# Table name: web_hooks
#
# id :integer not null, primary key
# url :string(255)
# project_id :integer
# created_at :datetime not null
# updated_at :datetime not null
# type :string(255) default("ProjectHook")
# service_id :integer
#
class SystemHook < WebHook
def async_execute(data)
Sidekiq::Client.enqueue(SystemHookWorker, id, data)
end
end