Class: Decidim::Admin::CreateCategory

Inherits:
Command
  • Object
show all
Defined in:
decidim-admin/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, user) ⇒ 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
17
# File 'decidim-admin/app/commands/decidim/admin/create_category.rb', line 13

def initialize(form, participatory_space, user)
  @form = form
  @participatory_space = participatory_space
  @user = user
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.


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

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

  create_category
  broadcast(:ok)
end