Sha256: 1685c77ccf5a8dd88f90894261bef629facfa7608d3ef689c07e598187549b1b
Contents?: true
Size: 1.11 KB
Versions: 78
Compression:
Stored size: 1.11 KB
Contents
# frozen_string_literal: true module Decidim module Proposals # The data store for a Proposal in the Decidim::Proposals component. module CommentableCollaborativeDraft extend ActiveSupport::Concern include Decidim::Comments::Commentable included do # Public: Overrides the `commentable?` Commentable concern method. def commentable? component.settings.comments_enabled? end # Public: Overrides the `accepts_new_comments?` Commentable concern method. def accepts_new_comments? commentable? && !component.current_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: Override Commentable concern method `users_to_notify_on_comment_created` def users_to_notify_on_comment_created followers end end end end end
Version data entries
78 entries across 78 versions & 1 rubygems