Sha256: 5e1b7164d3c54952bb958f119a005bad255a166249684a62a654dc3b9446d559
Contents?: true
Size: 898 Bytes
Versions: 101
Compression:
Stored size: 898 Bytes
Contents
# frozen_string_literal: true module Decidim module Admin # A command with all the business logic when creating a scope type. class CreateScopeType < 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_scope_type broadcast(:ok) end private attr_reader :form def create_scope_type ScopeType.create!( name: form.name, organization: form.organization, plural: form.plural ) end end end end
Version data entries
101 entries across 101 versions & 2 rubygems