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

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

          private

          def sidebar_element
            :project_sidebar
          end
        end
      end
    end
  end
end