Class: Decidim::Admin::CreateCategory
- Inherits:
-
Rectify::Command
- Object
- Rectify::Command
- Decidim::Admin::CreateCategory
- 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
-
#call ⇒ Object
Executes the command.
-
#initialize(form, participatory_process) ⇒ CreateCategory
constructor
Public: Initializes the command.
Constructor Details
#initialize(form, participatory_process) ⇒ CreateCategory
Public: Initializes the command.
form - A form object with the params. participatory_process - The ParticipatoryProcess that will hold the
category
12 13 14 15 |
# File 'app/commands/decidim/admin/create_category.rb', line 12 def initialize(form, participatory_process) @form = form @participatory_process = participatory_process 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.
23 24 25 26 27 28 |
# File 'app/commands/decidim/admin/create_category.rb', line 23 def call return broadcast(:invalid) if form.invalid? create_category broadcast(:ok) end |