2021-02-15 17:57:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-01-27 10:38:26 +05:30
|
|
|
class CustomWizard::RealtimeValidation
|
2021-02-15 17:57:15 +05:30
|
|
|
cattr_accessor :types
|
2021-03-11 17:30:15 +11:00
|
|
|
|
2021-02-15 17:57:15 +05:30
|
|
|
@@types ||= {
|
2021-02-16 11:43:00 +11:00
|
|
|
similar_topics: {
|
|
|
|
types: [:text],
|
|
|
|
component: "similar-topics-validator",
|
|
|
|
backend: true,
|
|
|
|
required_params: []
|
|
|
|
}
|
2021-02-15 17:57:15 +05:30
|
|
|
}
|
2021-02-01 19:28:37 +05:30
|
|
|
end
|