# frozen_string_literal: true module Decidim module Comments module Abilities # Defines the abilities related to comments for a logged in process moderator user. # Intended to be used with `cancancan`. class ParticipatoryProcessModeratorAbility < Decidim::Abilities::ParticipatoryProcessModeratorAbility def define_participatory_process_abilities super can [:unreport, :hide], Comment do |comment| can_manage_process?(comment.feature.participatory_space) end end end end end end