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

Methods inherited from Command

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

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

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.



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