Class: Decidim::Admin::CreateCategory

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

Overview

A command with all the business logic to create a new category in the system.

Instance Method Summary collapse

Constructor Details

#initialize(form, participatory_space) ⇒ CreateCategory

Public: Initializes the command.

form - A form object with the params. participatory_space - The participatory space that will hold the

category


13
14
15
16
# File 'app/commands/decidim/admin/create_category.rb', line 13

def initialize(form, participatory_space)
  @form = form
  @participatory_space = participatory_space
end

Instance Method Details

#callObject

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.



24
25
26
27
28
29
# File 'app/commands/decidim/admin/create_category.rb', line 24

def call
  return broadcast(:invalid) if form.invalid?

  create_category
  broadcast(:ok)
end