Sha256: 1ad458f7a2f06d0aec79174db0807d251952ba93f4766bd514fb00bd2166a12a
Contents?: true
Size: 920 Bytes
Versions: 54
Compression:
Stored size: 920 Bytes
Contents
# frozen_string_literal: true module Decidim module Admin # A command with all the business logic when creating a static page. class CreateStaticPage < Rectify::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? create_page broadcast(:ok) end private attr_reader :form def create_page StaticPage.create!( title: form.title, slug: form.slug, content: form.content, organization: form.organization ) end end end end
Version data entries
54 entries across 54 versions & 2 rubygems