Sha256: f9f46a02eb0038dce9b9748d4f8569655070e76509361e6bd2c530eb3a4da973
Contents?: true
Size: 923 Bytes
Versions: 14
Compression:
Stored size: 923 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 < Rectify::Command # Public: Initializes the command. # # form - A form object with the params. def initialize(form) @form = form end # Executes the command. Braodcasts 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_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
14 entries across 14 versions & 2 rubygems