# frozen_string_literal: true module Decidim module Admin # A command with all the business logic to create a new category in the # system. class CreateCategory < Rectify::Command # Public: Initializes the command. # # form - A form object with the params. # participatory_process - The ParticipatoryProcess that will hold the # category def initialize(form, participatory_process) @form = form @participatory_process = participatory_process end # 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. def call return broadcast(:invalid) if form.invalid? create_category broadcast(:ok) end private attr_reader :form def create_category Category.create!( name: form.name, description: form.description, parent_id: form.parent_id, participatory_process: @participatory_process ) end end end end