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

pulibrary / tigerdata-app / 9d76b7eb-940a-44e8-b4ac-cf7b8cdcc98c

01 Dec 2025 03:02PM UTC coverage: 80.707% (-6.9%) from 87.594%
9d76b7eb-940a-44e8-b4ac-cf7b8cdcc98c

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

2602 of 3224 relevant lines covered (80.71%)

263.99 hits per line

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

0.0
/app/models/mediaflux/store_list_request.rb
1
# frozen_string_literal: true
2
module Mediaflux
×
3
  class StoreListRequest < Request
×
4
    # Constructor
5
    # @param session_token [String] the API token for the authenticated session
6
    # @param name [String] Name of the Asset
7
    # @param collection [Boolean] create a collection asset if true
8
    # @param namespace [String] Optional Parent namespace for the asset to be created in
9
    # @param pid [Integer] Optional Parent id for the asset to be created in
10
    def initialize(session_token:)
×
11
      super(session_token: session_token)
×
12
    end
×
13

14
    # Specifies the Mediaflux service to use when creating assets
15
    # @return [String]
16
    def self.service
×
17
      "asset.store.list"
×
18
    end
×
19

20
    def stores
×
21
      @stores ||= begin
×
22
                    xml = response_xml
×
23
                    xml.xpath("/response/reply/result/store").map do |node|
×
24
                      {
×
25
                        id: node.xpath("@id").text,
×
26
                        type: node.xpath("./type").text,
×
27
                        name: node.xpath("./name").text,
×
28
                        tag: node.xpath("./tag").text
×
29
                      }
×
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