Class: Decidim::Admin::CreateStaticPageTopic
- Inherits:
-
Command
- Object
- Command
- Decidim::Admin::CreateStaticPageTopic
- Defined in:
- 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
-
#call ⇒ Object
Executes the command.
-
#initialize(form) ⇒ CreateStaticPageTopic
constructor
Public: Initializes the command.
Constructor Details
#initialize(form) ⇒ CreateStaticPageTopic
Public: Initializes the command.
form - A form object with the params.
10 11 12 |
# File 'app/commands/decidim/admin/create_static_page_topic.rb', line 10 def initialize(form) @form = form end |
Instance Method Details
#call ⇒ Object
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.
20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
# File '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., weight: @form.weight ) broadcast(:ok) end |