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.17.2 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.18.0 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.17.1 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.16.1 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.17.0 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.16.0 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.15.2 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.15.1 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.15.0 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.14.4 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.14.3 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.14.2 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.14.1 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.13.1 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.12.2 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.13.0 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.12.1 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.13.0.pre1 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.12.0 app/commands/decidim/admin/create_scope_type.rb
decidim-admin-0.11.2 app/commands/decidim/admin/create_scope_type.rb