Sha256: 0348514a6c9f8762a3050eb484dc7a8f4531be6644eee104248854433f8f4af9
Contents?: true
Size: 1.65 KB
Versions: 3
Compression:
Stored size: 1.65 KB
Contents
# frozen_string_literal: true module Decidim module Elections module Admin # This command is executed when the user creates an Answer # from the admin panel. class CreateAnswer < Rectify::Command include ::Decidim::AttachmentMethods include ::Decidim::GalleryMethods def initialize(form) @form = form end # Creates the answer if valid. # # Broadcasts :ok if successful, :invalid otherwise. def call return broadcast(:invalid) if invalid? if process_gallery? build_gallery return broadcast(:invalid) if gallery_invalid? end transaction do create_answer link_proposals create_gallery if process_gallery? end broadcast(:ok, answer) end private attr_reader :form, :answer, :gallery def invalid? form.election.blocked? || form.invalid? end def create_answer attributes = { question: form.question, title: form.title, description: form.description, weight: form.weight } @answer = Decidim.traceability.create!( Answer, form.current_user, attributes, visibility: "all" ) @attached_to = @answer end def proposals @proposals ||= answer.sibling_scope(:proposals).where(id: form.proposal_ids) end def link_proposals answer.link_resources(proposals, "related_proposals") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems