summaryrefslogtreecommitdiff
path: root/lib/gitlab/github_import/wiki_formatter.rb
blob: 0396122eeb9cfda4ceb21da244d0f8ac5bbb649c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module Gitlab
  module GithubImport
    class WikiFormatter
      attr_reader :project

      def initialize(project)
        @project = project
      end

      def disk_path
        "#{project.disk_path}.wiki"
      end

      def import_url
        project.import_url.sub(/\.git\z/, ".wiki.git")
      end
    end
  end
end