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

comma_separated_to_integer_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: b8ab08b3fd4074605d491b6cfa03b076cc1933a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module API
  module Validations
    module Types
      class CommaSeparatedToIntegerArray < CommaSeparatedToArray
        def self.coerce
          lambda do |value|
            super.call(value).map(&:to_i)
          end
        end
      end
    end
  end
end