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

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

module BlobViewer
  class GeoJson < Base
    include Rich
    include ClientSide

    self.binary = false
    self.extensions = %w[geojson]
    self.partial_name = 'geo_json'
  end
end