Sha256: 6f2e1218398c207caca46314552262354e01aaf55881336f2fc4aa17260f2471
Contents?: true
Size: 932 Bytes
Versions: 18
Compression:
Stored size: 932 Bytes
Contents
# frozen_string_literal: true module Decidim module Admin # A command with all the business logic when updating a scope. class UpdateScope < Rectify::Command # Public: Initializes the command. # # scope - The Scope to update # form - A form object with the params. def initialize(scope, form) @scope = scope @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? update_scope broadcast(:ok) end private attr_reader :form def update_scope @scope.update_attributes!(attributes) end def attributes { name: form.name } end end end end
Version data entries
18 entries across 18 versions & 2 rubygems