Repository URL to install this package:
Version:
0.2.3 ▾
|
module Topical
class Tagging < ::ActiveRecord::Base
taggable_options = { polymorphic: true }
if Rails::VERSION::MAJOR >= 5
taggable_options[:required] = false
end
belongs_to :taggable, taggable_options
belongs_to :tag
default_scope -> { order :position }
end
end