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/audit/type/shared.rb')
-rw-r--r--lib/gitlab/audit/type/shared.rb25
1 files changed, 25 insertions, 0 deletions
diff --git a/lib/gitlab/audit/type/shared.rb b/lib/gitlab/audit/type/shared.rb
new file mode 100644
index 00000000000..999b7de13e2
--- /dev/null
+++ b/lib/gitlab/audit/type/shared.rb
@@ -0,0 +1,25 @@
+# frozen_string_literal: true
+
+# This file can contain only simple constructs as it is shared between:
+# 1. `Pure Ruby`: `bin/audit-event-type`
+# 2. `GitLab Rails`: `lib/gitlab/audit/type/definition.rb`
+
+module Gitlab
+ module Audit
+ module Type
+ module Shared
+ # The PARAMS in config/audit_events/types/type_schema.json
+ PARAMS = %i[
+ name
+ description
+ introduced_by_issue
+ introduced_by_mr
+ group
+ milestone
+ saved_to_database
+ streamed
+ ].freeze
+ end
+ end
+ end
+end