Sha256: dc13a0393544db30bba2783b00865b31324d573ac613f3bcb4ef985e56f29c9f
Contents?: true
Size: 1.08 KB
Versions: 12
Compression:
Stored size: 1.08 KB
Contents
# frozen_string_literal: true module Decidim # A reportable can be reported one time for each user. class Report < ApplicationRecord include Decidim::DownloadYourData REASONS = %w(spam offensive does_not_belong).freeze belongs_to :moderation, foreign_key: "decidim_moderation_id", class_name: "Decidim::Moderation" belongs_to :user, foreign_key: "decidim_user_id", class_name: "Decidim::User" validates :reason, presence: true validates :user, uniqueness: { scope: :decidim_moderation_id } validates :reason, inclusion: { in: REASONS } validate :user_and_moderation_same_organization def self.user_collection(user) where(decidim_user_id: user.id) end def self.export_serializer Decidim::DownloadYourDataSerializers::DownloadYourDataReportSerializer end private # Private: check if the moderation and the user have the same organization def user_and_moderation_same_organization return if !moderation || !user errors.add(:moderation, :invalid) unless user.organization == moderation.organization end end end
Version data entries
12 entries across 12 versions & 1 rubygems