summaryrefslogtreecommitdiff
path: root/lib/gitlab/github_import/wiki_formatter.rb
blob: ca8d96f5650fa964e74c3a96000ef8a0a4cc5bf4 (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.wiki.disk_path
      end

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