Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/data_builder/alert.rb')
-rw-r--r--lib/gitlab/data_builder/alert.rb27
1 files changed, 27 insertions, 0 deletions
diff --git a/lib/gitlab/data_builder/alert.rb b/lib/gitlab/data_builder/alert.rb
new file mode 100644
index 00000000000..e34bdeea799
--- /dev/null
+++ b/lib/gitlab/data_builder/alert.rb
@@ -0,0 +1,27 @@
+# frozen_string_literal: true
+
+module Gitlab
+ module DataBuilder
+ module Alert
+ extend self
+
+ def build(alert)
+ {
+ object_kind: 'alert',
+ object_attributes: hook_attrs(alert)
+ }
+ end
+
+ 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
+ end
+ end
+end