From 38737079b6c1096c2517e249198b8bc0bedf4156 Mon Sep 17 00:00:00 2001 From: Dmitriy Zaporozhets Date: Sat, 9 Feb 2013 15:26:47 +0200 Subject: ignore docs by git --- doc/code/classes/WebHook.html | 168 ------------------------------------------ 1 file changed, 168 deletions(-) delete mode 100644 doc/code/classes/WebHook.html (limited to 'doc/code/classes/WebHook.html') diff --git a/doc/code/classes/WebHook.html b/doc/code/classes/WebHook.html deleted file mode 100644 index 54097dd30e5..00000000000 --- a/doc/code/classes/WebHook.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - WebHook - - - - - - - - - - - - - -
-
- -
- -

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
- -
- - - - - - - - - - - - - - - -
Methods
-
- -
E
-
- -
- -
- - - - -
Included Modules
-
    - -
  • - - HTTParty - -
  • - -
- - - - - - - - - - - - - - - - - - -
Instance Public methods
- -
-
- - execute(data) - - -
- - -
- -
- - - - - - -
- - -
-
# File app/models/web_hook.rb, line 25
-def execute(data)
-  parsed_url = URI.parse(url)
-  if parsed_url.userinfo.blank?
-    WebHook.post(url, body: data.to_json, headers: { "Content-Type" => "application/json" })
-  else
-    post_url = url.gsub("#{parsed_url.userinfo}@", "")
-    WebHook.post(post_url,
-                 body: data.to_json,
-                 headers: {"Content-Type" => "application/json"},
-                 basic_auth: {username: parsed_url.user, password: parsed_url.password})
-  end
-end
-
-
- -
-
- -
- - \ No newline at end of file -- cgit v1.2.1