app/models/mdm/module/mixin.rb in metasploit_data_models-0.24.1 vs app/models/mdm/module/mixin.rb in metasploit_data_models-0.24.2
- old
+ new
@@ -1,12 +1,25 @@
+# @deprecated Never populated by metasploit-framework.
+#
+# Module mixed into a {#detail Metasploit Module}.
class Mdm::Module::Mixin < ActiveRecord::Base
self.table_name = 'module_mixins'
#
# Associations
#
+ # Metasploit Module the {#name named} `Module` was mixed in.
belongs_to :detail, :class_name => 'Mdm::Module::Detail'
+
+ #
+ # Attributes
+ #
+
+ # @!attribute name
+ # The `Module#name` of the mixed in `Module`.
+ #
+ # @return [String]
#
# Mass Assignment Security
#