Project

General

Profile

Download (351 Bytes) Statistics
| Branch: | Tag: | Revision:

runcible / lib / runcible / models / iso_importer.rb @ c0df0f4c

1
module Runcible
2
  module Models
3
    class IsoImporter < Importer
4
      ID = 'iso_importer'.freeze
5

    
6
      # Importer Type id
7
      #
8
      # @return [string]
9
      def id
10
        IsoImporter::ID
11
      end
12

    
13
      # generate the pulp config for the iso importer
14
      #
15
      # @return [Hash]
16
      def config
17
        as_json
18
      end
19
    end
20
  end
21
end