Sha256: 22be9b712833e1ae55a93699c0a61e6611ec8ff8c0e21a796c06eb1d771cab10
Contents?: true
Size: 919 Bytes
Versions: 17
Compression:
Stored size: 919 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
17 entries across 17 versions & 2 rubygems