status.rb 187 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 class CommentClassificationPlugin::Status < ApplicationRecord belongs_to :owner, :polymorphic => true validates_presence_of :name scope :enabled, -> { where enabled: true } end