Sha256: 77ab9facda1e3ea93dc481d3cc9e75c6c42e3695f99059b1fc1609122fe29f57
Contents?: true
Size: 484 Bytes
Versions: 44
Compression:
Stored size: 484 Bytes
Contents
# frozen_string_literal: true module Decidim module Elections # The data store for an Election-Trustee relation in the Decidim::Elections component. class ElectionsTrustee < ApplicationRecord belongs_to :election, foreign_key: "decidim_elections_election_id", class_name: "Decidim::Elections::Election", optional: true belongs_to :trustee, foreign_key: "decidim_elections_trustee_id", class_name: "Decidim::Elections::Trustee", optional: true end end end
Version data entries
44 entries across 44 versions & 1 rubygems