Sha256: 868a540e67cab70cf88810585b726ded2f34696ff302689aab4c377dc35ca2d1
Contents?: true
Size: 926 Bytes
Versions: 15
Compression:
Stored size: 926 Bytes
Contents
# frozen_string_literal: true module Decidim module System # A command with all the business logic when creating a new admin in # the system. class CreateAdmin < 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 was not valid and we could not proceed. # # Returns nothing. def call return broadcast(:invalid) if form.invalid? create_admin broadcast(:ok) end private attr_reader :form def create_admin Admin.create!( email: form.email, password: form.password, password_confirmation: form.password_confirmation ) end end end end
Version data entries
15 entries across 15 versions & 1 rubygems