Class: Vx::ServiceConnector::GitlabV4::Hooks
- Inherits:
-
Struct
- Object
- Struct
- Vx::ServiceConnector::GitlabV4::Hooks
- Defined in:
- lib/vx/service_connector/gitlab_v4/hooks.rb
Instance Attribute Summary collapse
-
#repo ⇒ Object
Returns the value of attribute repo.
-
#session ⇒ Object
Returns the value of attribute session.
Instance Method Summary collapse
Instance Attribute Details
#repo ⇒ Object
Returns the value of attribute repo
4 5 6 |
# File 'lib/vx/service_connector/gitlab_v4/hooks.rb', line 4 def repo @repo end |
#session ⇒ Object
Returns the value of attribute session
4 5 6 |
# File 'lib/vx/service_connector/gitlab_v4/hooks.rb', line 4 def session @session end |
Instance Method Details
#all ⇒ Object
6 7 8 |
# File 'lib/vx/service_connector/gitlab_v4/hooks.rb', line 6 def all session.get hooks_url end |
#create(url, token) ⇒ Object
10 11 12 13 14 15 16 17 |
# File 'lib/vx/service_connector/gitlab_v4/hooks.rb', line 10 def create(url, token) session.post( hooks_url, url: url, push_events: true, merge_requests_events: true ) end |
#destroy(url_mask) ⇒ Object
19 20 21 22 23 24 25 |
# File 'lib/vx/service_connector/gitlab_v4/hooks.rb', line 19 def destroy(url_mask) all.select do |hook| hook.url =~ /#{Regexp.escape url_mask}/ end.map do |hook| session.delete hooks_url, hook_id: hook.id end end |