Sha256: 026ab48458b1212c139f2bece1b784aa7d7254c99ac8535617daac22e49f33bf
Contents?: true
Size: 1.45 KB
Versions: 14
Compression:
Stored size: 1.45 KB
Contents
# frozen_string_literal: true module Decidim module Results # The data store for a Result in the Decidim::Results component. It stores a # title, description and any other useful information to render a custom result. class Result < Results::ApplicationRecord include Decidim::Resourceable include Decidim::HasFeature include Decidim::HasScope include Decidim::HasCategory include Decidim::HasReference include Decidim::Comments::Commentable feature_manifest_name "results" # Public: Overrides the `commentable?` Commentable concern method. def commentable? feature.settings.comments_enabled? end # Public: Overrides the `accepts_new_comments?` Commentable concern method. def accepts_new_comments? commentable? && !feature.active_step_settings.comments_blocked end # Public: Overrides the `comments_have_alignment?` Commentable concern method. def comments_have_alignment? true end # Public: Overrides the `comments_have_votes?` Commentable concern method. def comments_have_votes? true end # Public: Overrides the `notifiable?` Notifiable concern method. def notifiable?(_context) true end # Public: Overrides the `users_to_notify` Notifiable concern method. def users_to_notify Decidim::Admin::ProcessAdmins.for(feature.participatory_process) end end end end
Version data entries
14 entries across 14 versions & 2 rubygems