Sha256: 9eff7a2b95b760cd9a87f93d689300e4782f27b9f7b59ed5292f6b8465066248
Contents?: true
Size: 837 Bytes
Versions: 59
Compression:
Stored size: 837 Bytes
Contents
class Mdm::HostTag < ActiveRecord::Base self.table_name = "hosts_tags" # # Associations # # @!attribute host # Host with {#tag}. # # @todo MSP-2723 # @return [Mdm::Host] belongs_to :host, class_name: 'Mdm::Host', inverse_of: :hosts_tags # @!attribute tag # Tag on {#host}. # # @todo MSP-2723 # @return [Mdm::Tag] belongs_to :tag, class_name: 'Mdm::Tag', inverse_of: :hosts_tags # # Callbacks # # @see http://stackoverflow.com/a/11694704 after_destroy :destroy_orphan_tag # # Instance Methods # private # Destroys {#tag} if it is orphaned # # @see http://stackoverflow.com/a/11694704 # @return [void] def destroy_orphan_tag tag.destroy_if_orphaned end public Metasploit::Concern.run(self) end
Version data entries
59 entries across 59 versions & 1 rubygems