Sha256: 3098d2b5a6701b8eedbe21e5357901fe25a26aac80cf19ff93ec50ceb137fa01

Contents?: true

Size: 259 Bytes

Versions: 7

Compression:

Stored size: 259 Bytes

Contents

module Services
  module Trello
    module Cards
      class Search
        def initialize(query:)
          @query = query
        end

        def call
          ::Trello::Action.search(@query, partial: true)['cards']
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
hubspot-api-client-9.0.0 sample-apps/trello-integration-app/app/lib/services/trello/cards/search.rb
hubspot-api-client-8.0.1 sample-apps/trello-integration-app/app/lib/services/trello/cards/search.rb
hubspot-api-client-8.0.0 sample-apps/trello-integration-app/app/lib/services/trello/cards/search.rb
hubspot-api-client-7.3.0 sample-apps/trello-integration-app/app/lib/services/trello/cards/search.rb
hubspot-api-client-7.2.0 sample-apps/trello-integration-app/app/lib/services/trello/cards/search.rb
hubspot-api-client-7.1.1 sample-apps/trello-integration-app/app/lib/services/trello/cards/search.rb
hubspot-api-client-7.1.0 sample-apps/trello-integration-app/app/lib/services/trello/cards/search.rb