Sha256: 17f5caa1449f00b8e2e0e9acab5c36b864f0b349472cbdfd6181bdfc2d8cd93c

Contents?: true

Size: 1.74 KB

Versions: 17

Compression:

Stored size: 1.74 KB

Contents

# frozen_string_literal: true

Decidim.configure do |config|
  config.application_name = "My Application Name"
  config.mailer_sender = "change-me@domain.org"

  # Change these lines to set your preferred locales
  config.default_locale = :en
  config.available_locales = [:en, :ca, :es]

  # Geocoder configuration
  # config.geocoder = {
  #   static_map_url: "https://image.maps.cit.api.here.com/mia/1.6/mapview",
  #   here_app_id: Rails.application.secrets.geocoder[:here_app_id],
  #   here_app_code: Rails.application.secrets.geocoder[:here_app_code]
  # }

  # Custom resource reference generator method
  # config.reference_generator = lambda do |resource, component|
  #   # Implement your custom method to generate resources references
  #   "1234-#{resource.id}"
  # end

  # Currency unit
  # config.currency_unit = "€"

  # The number of reports which an object can receive before hiding it
  # config.max_reports_before_hiding = 3

  # Custom HTML Header snippets
  #
  # The most common use is to integrate third-party services that require some
  # extra JavaScript or CSS. Also, you can use it to add extra meta tags to the
  # HTML. Note that this will only be rendered in public pages, not in the admin
  # section.
  #
  # Before enabling this you should ensure that any tracking that might be done
  # is in accordance with the rules and regulations that apply to your
  # environment and usage scenarios. This component also comes with the risk
  # that an organization's administrator injects malicious scripts to spy on or
  # take over user accounts.
  #
  config.enable_html_header_snippets = false
end

Rails.application.config.i18n.available_locales = Decidim.available_locales
Rails.application.config.i18n.default_locale = Decidim.default_locale

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
decidim-generators-0.15.2 lib/decidim/generators/app_templates/initializer.rb
decidim-generators-0.15.1 lib/decidim/generators/app_templates/initializer.rb
decidim-generators-0.15.0 lib/decidim/generators/app_templates/initializer.rb
decidim-generators-0.14.4 lib/decidim/generators/app_templates/initializer.rb
decidim-generators-0.14.3 lib/decidim/generators/app_templates/initializer.rb
decidim-generators-0.14.2 lib/decidim/generators/app_templates/initializer.rb
decidim-generators-0.14.1 lib/decidim/generators/app_templates/initializer.rb
decidim-generators-0.13.1 lib/decidim/generators/app_templates/initializer.rb
decidim-generators-0.12.2 lib/decidim/generators/app_templates/initializer.rb
decidim-generators-0.13.0 lib/decidim/generators/app_templates/initializer.rb
decidim-generators-0.12.1 lib/decidim/generators/app_templates/initializer.rb
decidim-generators-0.13.0.pre1 lib/decidim/generators/app_templates/initializer.rb
decidim-generators-0.12.0 lib/decidim/generators/app_templates/initializer.rb
decidim-generators-0.11.2 lib/decidim/generators/app_templates/initializer.rb
decidim-generators-0.12.0.pre lib/decidim/generators/app_templates/initializer.rb
decidim-generators-0.11.1 lib/decidim/generators/app_templates/initializer.rb
decidim-generators-0.11.0.pre1 lib/decidim/generators/app_templates/initializer.rb