Sha256: b38033df91dfca88ca93c62384008f9118f58a54e37b4e417373626a93c87704
Contents?: true
Size: 1 KB
Versions: 7
Compression:
Stored size: 1 KB
Contents
# frozen_string_literal: true module Decidim module Comments # A comment can include user votes. A user should be able to upVote, votes with # weight 1 and downVote, votes with weight -1. class CommentVote < ApplicationRecord include Decidim::DataPortability belongs_to :comment, foreign_key: "decidim_comment_id", class_name: "Comment" belongs_to :author, foreign_key: "decidim_author_id", class_name: "Decidim::User" validates :comment, uniqueness: { scope: :author } validates :weight, inclusion: { in: [-1, 1] } validate :author_and_comment_same_organization def self.export_serializer Decidim::Comments::CommentVoteSerializer end private # Private: check if the comment and the author have the same organization def author_and_comment_same_organization return unless author.present? && comment.present? errors.add(:comment, :invalid) unless author.organization == comment.organization end end end end
Version data entries
7 entries across 7 versions & 1 rubygems