summaryrefslogtreecommitdiff
path: root/qa/qa/flow/project.rb
blob: 70bdcfcb7195405797dcd0eabcf4e4261a439c29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module QA
  module Flow
    module Project
      extend self

      def go_to_create_project_from_template
        Page::Project::New.perform(&:click_create_from_template_link)
      end
    end
  end
end

QA::Flow::Project.prepend_mod_with('Flow::Project', namespace: QA)