2021-02-15 13:27:15 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-01-27 06:08:26 +01:00
|
|
|
class CustomWizard::RealtimeValidation
|
2021-02-15 13:27:15 +01:00
|
|
|
cattr_accessor :types
|
2021-03-11 07:30:15 +01:00
|
|
|
|
2021-02-15 13:27:15 +01:00
|
|
|
@@types ||= {
|
2021-02-16 01:43:00 +01:00
|
|
|
similar_topics: {
|
|
|
|
types: [:text],
|
|
|
|
component: "similar-topics-validator",
|
|
|
|
backend: true,
|
|
|
|
required_params: []
|
|
|
|
}
|
2021-02-15 13:27:15 +01:00
|
|
|
}
|
2021-02-01 14:58:37 +01:00
|
|
|
end
|