label.rb 268 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 class CommentClassificationPlugin::Label < Noosfero::Plugin::ActiveRecord belongs_to :owner, :polymorphic => true validates_presence_of :name named_scope :enabled, :conditions => { :enabled => true } COLORS = ['red', 'green', 'yellow', 'gray', 'blue'] end