Sha256: 5546655e6122dccfa5606148cf67a6e3e2c8df5e819bdd8580a77770ad92fe8a
Contents?: true
Size: 1.28 KB
Versions: 8
Compression:
Stored size: 1.28 KB
Contents
# frozen_string_literal: true class VotesEnabledToVotesChoices < ActiveRecord::Migration[5.2] class Component < ApplicationRecord self.table_name = :decidim_components end def up budget_components.each do |component| steps = component["settings"] && component["settings"].dig("steps") default_step = component["settings"] && component["settings"].dig("default_step") if steps.present? new_steps_settings = component["settings"]["steps"].each_with_object({}) do |(step, config), new_config| votes_value = config.dig("votes_enabled") ? "enabled" : "disabled" new_config[step] = config.merge("votes": votes_value).except("votes_enabled") new_config end component["settings"]["steps"] = new_steps_settings component.save! elsif default_step.present? votes_value = component["settings"]["default_step"].dig("votes_enabled") ? "enabled" : "disabled" new_default_step_settings = component["settings"]["default_step"].merge("votes": votes_value).except("votes_enabled") component["settings"]["default_step"] = new_default_step_settings component.save! end end end def budget_components @budget_components ||= Component.where(manifest_name: "budgets") end end
Version data entries
8 entries across 8 versions & 1 rubygems