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