Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-12 21:22:54 +01:00
c45e51fcb6
* Code formatting * Both "type" and "name" are used to refer to the validation type. Changed all to "type". * Added proper abstraction of realtime validation classes on server * UI improvements in admin and wizard
11 Zeilen
Kein EOL
219 B
Ruby
11 Zeilen
Kein EOL
219 B
Ruby
class CustomWizard::RealtimeValidation::Result
|
|
attr_accessor :type,
|
|
:items,
|
|
:serializer_opts
|
|
|
|
def initialize(type)
|
|
@type = type
|
|
@items = []
|
|
@serializer_opts = {}
|
|
end
|
|
end |