abunashir/chartmogul

View on GitHub
lib/chartmogul/import/data_source.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Chartmogul
  module Import
    class DataSource < Base
      private

      def end_point
        "data_sources"
      end

      def required_keys
        [:name]
      end
    end
  end
end