module ManageIQ::Password::PasswordMixin

Public Class Methods

included(other) click to toggle source
# File lib/manageiq/password/password_mixin.rb, line 4
def self.included(other)
  other.extend(ClassMethods)

  other.class_attribute :encrypted_columns
  other.encrypted_columns = []
end