Class: Bl::Webhooks
Constant Summary
Constants inherited
from Command
Command::ACTIVITY_TYPES, Command::CATEGORY_FIELDS, Command::FILE_FIELDS, Command::GIT_REPO_FIELDS, Command::ISSUES_PARAMS, Command::ISSUE_BASE_ATTRIBUTES, Command::ISSUE_FIELDS, Command::MILESTONE_FIELDS, Command::MILESTONE_PARAMS, Command::PROJECT_FIELDS, Command::PROJECT_PARAMS, Command::ROLES, Command::SPACE_DISK_USAGE, Command::SPACE_DISK_USAGE_DETAILS_FIELDS, Command::SPACE_FIELDS, Command::SPACE_NOTIFICATION_FIELDS, Command::TYPE_COLORS, Command::USER_FIELDS, Command::USER_PARAMS, Command::WATCHINGS_PARAMS, Command::WEBHOOK_FIELDS, Command::WEBHOOK_PARAMS, Command::WIKI_FIELDS
Instance Method Summary
collapse
Methods included from Formatting
colorize_priority, colorize_status, colorize_type
client, formatter
Constructor Details
Returns a new instance of Webhooks.
4
5
6
7
8
|
# File 'lib/bl/webhooks.rb', line 4
def initialize(*)
@config = Bl::Config.instance
@url = "projects/#{@config[:project_key]}/webhooks"
super
end
|
Instance Method Details
#add ⇒ Object
24
25
26
27
28
|
# File 'lib/bl/webhooks.rb', line 24
def add
res = client.post(@url, options.to_h)
puts 'webhook added'
print_response(res)
end
|
#delete(id) ⇒ Object
39
40
41
42
43
|
# File 'lib/bl/webhooks.rb', line 39
def delete(id)
res = client.delete("#{@url}/#{id}")
puts 'webhook deleted'
print_response(res)
end
|
#list ⇒ Object
11
12
13
14
|
# File 'lib/bl/webhooks.rb', line 11
def list
res = client.get(@url)
print_response(res)
end
|
#show(id) ⇒ Object
17
18
19
20
|
# File 'lib/bl/webhooks.rb', line 17
def show(id)
res = client.get("#{@url}/#{id}")
print_response(res)
end
|
#update(id) ⇒ Object
32
33
34
35
36
|
# File 'lib/bl/webhooks.rb', line 32
def update(id)
res = client.patch("#{@url}/#{id}", options.to_h)
puts 'webhook updated'
print_response(res)
end
|