Module: Gitlab::DataBuilder::Alert
Instance Method Summary collapse
Instance Method Details
#build(alert) ⇒ Object
8 9 10 11 12 13 |
# File 'lib/gitlab/data_builder/alert.rb', line 8 def build(alert) { object_kind: 'alert', object_attributes: hook_attrs(alert) } end |
#hook_attrs(alert) ⇒ Object
15 16 17 18 19 20 21 22 23 24 |
# File 'lib/gitlab/data_builder/alert.rb', line 15 def hook_attrs(alert) { title: alert.title, url: Gitlab::Routing.url_helpers.details_project_alert_management_url(alert.project, alert.iid), severity: alert.severity, events: alert.events, status: alert.status_name, started_at: alert.started_at } end |