Sha256: 62ebcf1816c2b5b9bf1d657cb3d8ed22eb0a7d5e0c2f8c2a9d850d0c4ca2e4c3
Contents?: true
Size: 987 Bytes
Versions: 46
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 < Rectify::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
46 entries across 46 versions & 1 rubygems