Sha256: 8a714952d47d71ddc13478c0df2fbf383b3db95730b6c8f4d9af33040866b4fc
Contents?: true
Size: 1.01 KB
Versions: 1
Compression:
Stored size: 1.01 KB
Contents
# frozen_string_literal: true module Decidim # A Feature represents a self-contained group of functionalities usually # defined via a FeatureManifest and its Components. It's meant to be able to # provide a single feature that spans over several steps, each one with its component. class Feature < ApplicationRecord belongs_to :participatory_process, foreign_key: "decidim_participatory_process_id" has_one :organization, through: :participatory_process has_many :categories, through: :participatory_process has_many :scopes, through: :organization validates :participatory_process, presence: true # Public: Finds the manifest this feature is associated to. # # Returns a FeatureManifest. def manifest Decidim.find_feature_manifest(manifest_name) end # Public: Assigns a manifest to this feature. # # manifest - The FeatureManifest for this Feature. # # Returns nothing. def manifest=(manifest) self.manifest_name = manifest.name end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
decidim-core-0.0.1 | app/models/decidim/feature.rb |