Welcome to mirror list, hosted at ThFree Co, Russian Federation.

labels_list.rb « types « validations « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 60277b99106ab87efe38cedabbb3f324bc8a5cc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true

module API
  module Validations
    module Types
      class LabelsList
        def self.coerce
          lambda do |value|
            case value
            when String
              value.split(',').map(&:strip)
            when Array
              value.flat_map { |v| v.to_s.split(',').map(&:strip) }
            when LabelsList
              value
            else
              []
            end
          end
        end
      end
    end
  end
end