mattbeedle/capsule_crm

View on GitHub
lib/capsule_crm/gettable.rb

Summary

Maintainability
A
0 mins
Test Coverage
module CapsuleCRM
  module Gettable
    extend ActiveSupport::Concern

    module ClassMethods
      def get(path, options = {})
        CapsuleCRM::Connection.get(path, options)
      end
    end
  end
end