CartoDB/cartodb20

View on GitHub
lib/cartodb/stats/editor_apis.rb

Summary

Maintainability
A
0 mins
Test Coverage
require_relative 'aggregator'

module CartoDB
  module Stats

    class EditorAPIs < Aggregator

      PREFIX = 'editor'

      def self.instance(config={}, host_info=Socket.gethostname)
        super(PREFIX, config, host_info)
      end

    end

  end
end