• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

pulibrary / tigerdata-app / b6e4a7c7-d411-4822-a760-84eba5096a52

01 Dec 2025 03:02PM UTC coverage: 74.875% (-12.7%) from 87.594%
b6e4a7c7-d411-4822-a760-84eba5096a52

Pull #2251

circleci

carolyncole
Updating the department select to utilize LuxInputMultiSelect
The component only allows an item to be selected once (only for non asynch results which departments are).
fiexs #2134
Pull Request #2251: Updating the department select to utilize LuxInputMultiSelect

2390 of 3192 relevant lines covered (74.87%)

215.79 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

100.0
/app/models/mediaflux/asset_destroy_request.rb
1
# frozen_string_literal: true
2
module Mediaflux
1✔
3
  class AssetDestroyRequest < Request
1✔
4
    attr_reader :collection, :members
1✔
5

6
    # Constructor
7
    # @param session_token [String] the API token for the authenticated session
8
    # @param collection [Int] the identifier of the collection to be destroyed
9
    # @param members [Boolean] A true/false flag the can destroy all members of a collection
10

11
    def initialize(session_token:, collection:, members:)
1✔
12
      super(session_token: session_token)
9✔
13
      @collection = collection
9✔
14
      @members = members
9✔
15
    end
16

17
    # Specifies the Mediaflux service to use when destroying assets
18
    # @return [String]
19
    def self.service
1✔
20
      "asset.destroy"
18✔
21
    end
22

23
      private
1✔
24

25
        def build_http_request_body(name:)
1✔
26
          super do |xml|
18✔
27
            xml.args do
18✔
28
              xml.id collection
18✔
29
              xml.members members
18✔
30
            end
31
          end
32
        end
33
  end
34
end
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc