cirandas.net

ref: dockerize

plugins/comment_classification/lib/comment_classification_plugin/label.rb


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
class CommentClassificationPlugin::Label < ApplicationRecord

  belongs_to :owner, :polymorphic => true

  validates_presence_of :name

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

  attr_accessible :name, :enabled, :color

  COLORS = ['red', 'green', 'yellow', 'gray', 'blue']

end