# frozen_string_literal: true module Decidim module EnhancedTextwork # The data store for a Paragraph in the Decidim::EnhancedTextwork 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