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

edit.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: e782bbbb4326323cfa17af9481018cc0a43b11c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module QA
  module Page
    module Project
      module Wiki
        class Edit < Base
          include Page::Component::WikiPageForm
          include Page::Component::WikiSidebar
          include Page::Component::ContentEditor
        end
      end
    end
  end
end