gitlab-org--gitlab-foss/app/models/web_hook.rb

29 lines
632 B
Ruby
Raw Normal View History

class WebHook < ActiveRecord::Base
include HTTParty
# HTTParty timeout
default_timeout 10
validates :url,
presence: true,
format: {
with: URI::regexp(%w(http https)),
message: "should be a valid url" }
def execute(data)
WebHook.post(url, body: data.to_json, headers: { "Content-Type" => "application/json" })
end
2012-07-15 12:29:06 +00:00
end
2012-01-03 21:39:03 +00:00
# == Schema Information
#
# Table name: web_hooks
#
2012-06-26 18:23:09 +00:00
# id :integer(4) not null, primary key
2012-01-03 21:39:03 +00:00
# url :string(255)
2012-06-26 18:23:09 +00:00
# project_id :integer(4)
# created_at :datetime not null
# updated_at :datetime not null
2012-01-03 21:39:03 +00:00
#