Sha256: d691104cc1a79791008d024f0457e1547a2e1e294388e4398653225fa3521b08

Contents?: true

Size: 987 Bytes

Versions: 12

Compression:

Stored size: 987 Bytes

Contents

# frozen_string_literal: true

module Decidim
  module Admin
    # A command with all the business logic when creating a static page topic.
    class CreateStaticPageTopic < Decidim::Command
      # Public: Initializes the command.
      #
      # form - A form object with the params.
      def initialize(form)
        @form = form
      end

      # Executes the command. Broadcasts these events:
      #
      # - :ok when everything is valid.
      # - :invalid if the form wasn't valid and we couldn't proceed.
      #
      # Returns nothing.
      def call
        return broadcast(:invalid) if @form.invalid?

        @topic = Decidim.traceability.create!(
          StaticPageTopic,
          @form.current_user,
          title: @form.title,
          description: @form.description,
          organization: @form.current_organization,
          show_in_footer: @form.show_in_footer,
          weight: @form.weight
        )
        broadcast(:ok)
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
decidim-admin-0.27.9 app/commands/decidim/admin/create_static_page_topic.rb
decidim-admin-0.27.8 app/commands/decidim/admin/create_static_page_topic.rb
decidim-admin-0.27.7 app/commands/decidim/admin/create_static_page_topic.rb
decidim-admin-0.27.6 app/commands/decidim/admin/create_static_page_topic.rb
decidim-admin-0.27.5 app/commands/decidim/admin/create_static_page_topic.rb
decidim-admin-0.27.4 app/commands/decidim/admin/create_static_page_topic.rb
decidim-admin-0.27.3 app/commands/decidim/admin/create_static_page_topic.rb
decidim-admin-0.27.2 app/commands/decidim/admin/create_static_page_topic.rb
decidim-admin-0.27.1 app/commands/decidim/admin/create_static_page_topic.rb
decidim-admin-0.27.0 app/commands/decidim/admin/create_static_page_topic.rb
decidim-admin-0.27.0.rc2 app/commands/decidim/admin/create_static_page_topic.rb
decidim-admin-0.27.0.rc1 app/commands/decidim/admin/create_static_page_topic.rb