Noosfero/noosfero

View on GitHub
plugins/comment_classification/lib/comment_classification_plugin/label.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CommentClassificationPlugin::Label < ApplicationRecord
  belongs_to :owner, polymorphic: true, optional: true

  validates_presence_of :name

  scope :enabled, -> { where enabled: true }

  attr_accessible :name, :enabled, :color

  COLORS = ["red", "green", "yellow", "gray", "blue"]
end