Sha256: 530e9ac227b46ecbe842408735a0fb5dc37a37af4f63e439d79ddf004baaf6fb
Contents?: true
Size: 560 Bytes
Versions: 14
Compression:
Stored size: 560 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, dependent: :nullify belongs_to :organization, foreign_key: "decidim_organization_id", class_name: "Decidim::Organization" mount_uploader :hero_image, Decidim::HeroImageUploader end end
Version data entries
14 entries across 14 versions & 1 rubygems