Sha256: eaa3a59f1ad35e0f5eb1ea4a77b07bd33a507081e248b7dd89d2537b0900534e
Contents?: true
Size: 979 Bytes
Versions: 12
Compression:
Stored size: 979 Bytes
Contents
# frozen_string_literal: true module Decidim module Consultations module Admin # A command with all the business logic when creating a new response group class CreateResponseGroup < Decidim::Command # Public: Initializes the command. # # form - A form object with the params. def initialize(form) @form = form 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? broadcast(:ok, create_response_group) end private attr_reader :form def create_response_group ResponseGroup.create( question: form.context.current_question, title: form.title ) end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems