summaryrefslogtreecommitdiff
path: root/qa/qa/page/project/sub_menus/common.rb
blob: 85bf932be4ac37c50514363ff817f209452f4e50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

module QA
  module Page
    module Project
      module SubMenus
        module Common
          extend QA::Page::PageConcern
          include QA::Page::SubMenus::Common

          private

          def sidebar_element
            :project_sidebar
          end
        end
      end
    end
  end
end