Sha256: 38c3bda32b83aebf8b35e43752f30428a55a5070be3368df8d468b43a8089bb6
Contents?: true
Size: 583 Bytes
Versions: 8
Compression:
Stored size: 583 Bytes
Contents
# frozen_string_literal: true module Decidim class ParticipatoryProcessGroup < ApplicationRecord has_many :participatory_processes, foreign_key: "decidim_participatory_process_group_id", class_name: "Decidim::ParticipatoryProcess", inverse_of: :participatory_process_group belongs_to :organization, foreign_key: "decidim_organization_id", class_name: "Decidim::Organization", inverse_of: :participatory_process_groups mount_uploader :hero_image, Decidim::HeroImageUploader end end
Version data entries
8 entries across 8 versions & 1 rubygems