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:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-06-06 18:08:10 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-06-06 18:08:10 +0300
commitc8003cdfe1597fa6aab21e91aab8cb77097e7eea (patch)
tree759b16c518b0abf8354e0382b72b672849db254d /lib/gitlab/data_builder
parent07207812561efc09c0c8783fd8d1430bb90dfd33 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/data_builder')
-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