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

top_nav_menu_header.rb « nav « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 520091dbd970eef769a29c8b1734af90fda1941c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module Gitlab
  module Nav
    class TopNavMenuHeader
      def self.build(title:)
        {
          type: :header,
          title: title
        }
      end
    end
  end
end