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

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