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

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

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