Sha256: f57c2295435503b942e37171662667518c98454bc9a70dc08284fa9b3d5a351e
Contents?: true
Size: 1.96 KB
Versions: 7
Compression:
Stored size: 1.96 KB
Contents
# frozen_string_literal: true module Decidim module System # A command that will create default help pages for an organization. class PopulateHelp < Decidim::Command # Public: Initializes the command. # # organization - An organization def initialize(organization) @organization = organization end # Executes the command. # # Returns nothing. def call ActiveRecord::Base.transaction do topic = Decidim::StaticPageTopic.create!( title: multi_translation("decidim.help.main_topic.title", organization: @organization.name), description: multi_translation("decidim.help.main_topic.description", organization: @organization.name), organization: @organization, weight: 0 ) Decidim::StaticPage.create!( slug: "help", title: multi_translation("decidim.help.main_topic.default_page.title", organization: @organization.name), content: multi_translation("decidim.help.main_topic.default_page.content", organization: @organization.name), topic:, organization: @organization, weight: 0 ) Decidim.participatory_space_manifests.each do |manifest| scope = "decidim.help.participatory_spaces.#{manifest.name}" next unless I18n.exists?(scope) Decidim::StaticPage.create!( title: multi_translation("#{scope}.title"), content: multi_translation("#{scope}.page"), slug: manifest.name, topic:, organization: @organization ) ContextualHelpSection.set_content(@organization, manifest.name, multi_translation("#{scope}.contextual")) end end end def multi_translation(key, **arguments) Decidim::TranslationsHelper.multi_translation(key, @organization.available_locales, **arguments) end end end end
Version data entries
7 entries across 7 versions & 1 rubygems