class Frigate::Form::Synchronizer::Base

Base class for Frigate::Form::Base synchronizations It justs abstract class which has two methods

Public Instance Methods

sync_errors() click to toggle source

synchronizes form properties (associations:properties) errors with general form errors

# File lib/frigate/form/synchronizer/base.rb, line 16
def sync_errors
        raise NotImplementedError
end
sync_with_model() click to toggle source

synchronizes form with model

# File lib/frigate/form/synchronizer/base.rb, line 11
def sync_with_model
        raise NotImplementedError
end