2020-04-22 19:07:51 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Validations
|
|
|
|
module Validators
|
2021-02-22 17:27:13 +05:30
|
|
|
class IntegerNoneAny < IntegerOrCustomValue
|
|
|
|
private
|
2020-04-22 19:07:51 +05:30
|
|
|
|
2021-02-22 17:27:13 +05:30
|
|
|
def extract_custom_values(_options)
|
|
|
|
[IssuableFinder::Params::FILTER_NONE, IssuableFinder::Params::FILTER_ANY]
|
2020-04-22 19:07:51 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|