amoniacou/pipedrive.rb

View on GitHub
lib/pipedrive/operations/create.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Pipedrive
  module Operations
    module Create
      extend ActiveSupport::Concern

      def create(params)
        make_api_call(:post, params)
      end
    end
  end
end