Method: Consyncful::Configuration#initialize

Defined in:
lib/consyncful/configuration.rb

#initializeConfiguration

rubocop:disable Metrics/MethodLength



32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/consyncful/configuration.rb', line 32

def initialize
  @sync_mode = :poll
  @contentful_client_options = {}
  @contentful_sync_options = {}
  @locale = 'en-NZ'
  @mongo_client = :default
  @mongo_collection = 'contentful_models'
  @content_tags = []
   = []
  @preserve_contentful_timestamps = false

  @webhook_authentication_required = true
  @webhook_user = nil
  @webhook_password = nil
end