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>2021-05-19 18:44:42 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-05-19 18:44:42 +0300
commit4555e1b21c365ed8303ffb7a3325d773c9b8bf31 (patch)
tree5423a1c7516cffe36384133ade12572cf709398d /lib/gitlab/nav/top_nav_menu_item.rb
parente570267f2f6b326480d284e0164a6464ba4081bc (diff)
Add latest changes from gitlab-org/gitlab@13-12-stable-eev13.12.0-rc42
Diffstat (limited to 'lib/gitlab/nav/top_nav_menu_item.rb')
-rw-r--r--lib/gitlab/nav/top_nav_menu_item.rb27
1 files changed, 27 insertions, 0 deletions
diff --git a/lib/gitlab/nav/top_nav_menu_item.rb b/lib/gitlab/nav/top_nav_menu_item.rb
new file mode 100644
index 00000000000..ee11f1f4560
--- /dev/null
+++ b/lib/gitlab/nav/top_nav_menu_item.rb
@@ -0,0 +1,27 @@
+# frozen_string_literal: true
+
+module Gitlab
+ module Nav
+ class TopNavMenuItem
+ # We want to have all keyword arguments for type safety.
+ # Ordinarily we could introduce a params object, but that's kind of what
+ # this is already :/. We could also take a hash and manually check every
+ # entry, but it's much more maintainable to do rely on native Ruby.
+ # rubocop: disable Metrics/ParameterLists
+ def self.build(id:, title:, active: false, icon: '', href: '', method: nil, view: '', css_class: '', data: {})
+ {
+ id: id,
+ title: title,
+ active: active,
+ icon: icon,
+ href: href,
+ method: method,
+ view: view.to_s,
+ css_class: css_class,
+ data: data
+ }
+ end
+ # rubocop: enable Metrics/ParameterLists
+ end
+ end
+end