diff --git a/app/models/concerns/remote_synchronizable.rb b/app/models/concerns/remote_synchronizable.rb index 8c2fc684..3c1209a8 100644 --- a/app/models/concerns/remote_synchronizable.rb +++ b/app/models/concerns/remote_synchronizable.rb @@ -1,11 +1,11 @@ -# Enhances a model with lifecycle callbacks to synchronise it with a remote resource using a client +# Enhances a model with methods to synchronise it with a remote resource using a client # class (conventionally located in `app/clients/`). # # Example: # ```ruby # class Foo < ApplicationRecord # include RemoteSynchronizable -# remote_synchronize with: BarApi::FooClient +# self.remote_synchronizable_client_class = BarApi::FooClient # end # ``` #