decidim/decidim

View on GitHub
decidim-accountability/app/commands/decidim/accountability/admin/update_status.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Decidim
  module Accountability
    module Admin
      # This command is executed when the user changes a Status from the admin
      # panel.
      class UpdateStatus < Decidim::Commands::UpdateResource
        fetch_form_attributes :key, :name, :description, :progress
      end
    end
  end
end