Sha256: e20c16037c1010f333879e05ff907ef5015e90130723f8a73ccf46c36420947e
Contents?: true
Size: 1.44 KB
Versions: 10
Compression:
Stored size: 1.44 KB
Contents
# Name of the CMS Fiona Instance to access RailsConnector::Configuration.instance_name = 'default' # Enable Rails Connector Addons. # Please refer to the Infopark Knowledge Base for more information on addons. RailsConnector::Configuration.enable( # :comments, # :google_analytics, # :crm, # :pdf_generator, # :ratings, # :rss, :search, # :seo_sitemap, :time_machine ) # Search should be configured in config/rails_connector.yml # RSS-Feed: # # Specify which Object should be used for the RSS feed's parent folder # RailsConnector::Configuration::Rss.root = lambda { NamedLink.get_object('news') } # PDF-Generator: # # Set a list of approved hosts which the PdfGenerator is allowed to use RailsConnector::Configuration::PdfGenerator.host_whitelist('localhost') # Google Analytics: # # RailsConnector::Configuration::GoogleAnalytics.domains( # '<your.domain.com>' => '<your-ga-code-1>', # '<your.domain.de>' => '<your-ga-code-2>' # ) # OMC: # # Infopark::Crm.configure do |config| # config.url = "http://<crm-domain>:<port>" # config.login = 'webservice' # config.api_key = '<password>' # # config.live_server_groups_callback = lambda {|contact| # # case contact.account.name # # when "My Company" # # %w(internal) # # else # # [] # # end # # } # end # # Re-captcha public/private key pair (used for creating a new user) # You can get those by signing up at http://recaptcha.net/ # RCC_PUB="" # RCC_PRIV=""
Version data entries
10 entries across 10 versions & 1 rubygems