Sha256: 9ee91d5947d5e8426359df68221fbb842fdf538bcdf6badf4a2496a74aafa60e
Contents?: true
Size: 960 Bytes
Versions: 45
Compression:
Stored size: 960 Bytes
Contents
# User settings. class Mdm::Profile < ActiveRecord::Base # # Attributes # # @!attribute active # Whether this is the currently active profile. # # @return [true] if this is the active profile. # @return [false] if this profile is inactive and another profile is active. # @!attribute created_at # When this profile was created. # # @return [DateTime] # @!attribute name # Name of this profile to distinguish it from other profiles. # # @return [String] # @!attribute owner # Owner of this profile. # # @return ['<system>'] System-wide profile for all users. # @return [String] Name of user that uses this profile. # @!attribute updated_at # The last time this profile was updated. # # @return [DateTime] # # Serializations # # Global settings. # # @return [Hash] serialize :settings, MetasploitDataModels::Base64Serializer.new Metasploit::Concern.run(self) end
Version data entries
45 entries across 45 versions & 1 rubygems