Class: Decidim::Admin::CreateStaticPageTopic

Inherits:
Command
  • Object
show all
Defined in:
decidim-admin/app/commands/decidim/admin/create_static_page_topic.rb

Overview

A command with all the business logic when creating a static page topic.

Instance Method Summary collapse

Methods inherited from Command

call, #evaluate, #method_missing, #respond_to_missing?, #transaction, #with_events

Constructor Details

#initialize(form) ⇒ CreateStaticPageTopic

Public: Initializes the command.

form - A form object with the params.



10
11
12
# File 'decidim-admin/app/commands/decidim/admin/create_static_page_topic.rb', line 10

def initialize(form)
  @form = form
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Decidim::Command

Instance Method Details

#callObject

Executes the command. Broadcasts these events:

  • :ok when everything is valid.

  • :invalid if the form was not valid and we could not proceed.

Returns nothing.



20
21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'decidim-admin/app/commands/decidim/admin/create_static_page_topic.rb', line 20

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