2019-12-18 09:49:57 -06:00
|
|
|
# typed: true
|
2008-12-22 23:26:38 +01:00
|
|
|
|
2012-04-11 13:39:12 +02:00
|
|
|
# The Tagging join model.
|
2008-12-22 23:26:38 +01:00
|
|
|
|
2018-11-03 15:57:14 -05:00
|
|
|
class Tagging < ApplicationRecord
|
2014-08-14 21:05:05 -05:00
|
|
|
|
2008-12-22 23:26:38 +01:00
|
|
|
belongs_to :tag
|
2012-08-27 23:09:13 +02:00
|
|
|
belongs_to :taggable, :polymorphic => true, :touch => true
|
2014-08-14 21:05:05 -05:00
|
|
|
|
2013-02-19 07:54:09 -07:00
|
|
|
after_destroy :delete_orphaned_tag
|
2014-08-14 21:05:05 -05:00
|
|
|
|
2012-04-17 16:47:37 +02:00
|
|
|
private
|
2014-08-14 21:05:05 -05:00
|
|
|
|
2013-02-19 07:54:09 -07:00
|
|
|
def delete_orphaned_tag
|
2012-04-17 16:47:37 +02:00
|
|
|
tag.destroy if tag and tag.taggings.count == 0
|
2012-04-08 22:10:43 +02:00
|
|
|
end
|
2014-08-14 21:05:05 -05:00
|
|
|
|
2008-12-22 23:26:38 +01:00
|
|
|
end
|