Sha256: 84cc7eca9a69f2320eb2f5687f232ad9bcc08e77a09f4dd25106c708aee052fd
Contents?: true
Size: 1.04 KB
Versions: 44
Compression:
Stored size: 1.04 KB
Contents
# frozen_string_literal: true module Decidim module Proposals # The data store for a Proposal in the Decidim::Proposals component. module CommentableProposal extend ActiveSupport::Concern include Decidim::Comments::CommentableWithComponent included do # 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 return (followers | component.participatory_space.admins).uniq if official? followers end def user_allowed_to_vote_comment?(user) return unless can_participate_in_space?(user) ActionAuthorizer.new(user, "vote_comment", component, self).authorize.ok? end end end end end
Version data entries
44 entries across 44 versions & 1 rubygems