Sha256: 7e2cad48a3aca08ccf5d7fb952cf2be87b2b55384879e16803a8c95d161b108b

Contents?: true

Size: 463 Bytes

Versions: 44

Compression:

Stored size: 463 Bytes

Contents

# frozen_string_literal: true

module FinApps
  module REST
    class OrderAssignments < FinAppsCore::REST::Resources
      def update(id, orders_array)
        not_blank(id, :operator_id)
        not_blank(orders_array, :params)
        raise FinAppsCore::InvalidArgumentsError, 'Invalid argument: params' unless orders_array.is_a? Array

        path = "operators/#{ERB::Util.url_encode(id)}/assign"
        super orders_array, path
      end
    end
  end
end

Version data entries

44 entries across 44 versions & 1 rubygems

Version Path
finapps-4.0.7 lib/finapps/rest/order_assignments.rb
finapps-4.0.6 lib/finapps/rest/order_assignments.rb
finapps-4.0.5 lib/finapps/rest/order_assignments.rb
finapps-4.0.4 lib/finapps/rest/order_assignments.rb