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

project_import_entity.rb « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9b51af685e767e0cec3e820a084fcc779dc22339 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class ProjectImportEntity < ProjectEntity
  include ImportHelper

  expose :import_source
  expose :import_status
  expose :human_import_status_name

  expose :provider_link do |project, options|
    provider_project_link_url(options[:provider_url], project[:import_source])
  end
end