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

show.rb « wiki « project « page « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f3573e3cdd3cc0a8caa2448365bad3fdd820d94f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

module QA
  module Page
    module Project
      module Wiki
        class Show < Base
          include Page::Component::Wiki
          include Page::Component::WikiSidebar
          include Page::Component::LazyLoader
        end
      end
    end
  end
end

QA::Page::Project::Wiki::Show.prepend_if_ee('QA::EE::Page::Project::Wiki::Show')