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

Version Path
decidim-admin-0.26.10 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.26.9 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.26.8 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.26.7 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.26.5 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.26.4 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.26.3 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.26.2 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.26.1 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.26.0 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.26.0.rc2 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.26.0.rc1 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.25.2 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.25.1 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.25.0 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.25.0.rc4 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.25.0.rc3 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.25.0.rc2 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.25.0.rc1 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.24.3 app/commands/decidim/admin/create_scope_type.rb