module Rodauth::InstanceMethods

  1. lib/rodauth.rb

Methods

Public Instance

  1. rodauth

Public Instance methods

rodauth(name=nil)
[show source]
    # File lib/rodauth.rb
405 def rodauth(name=nil)
406   if name
407     (@_rodauths ||= {})[name] ||= self.class.rodauth(name).new(self)
408   else
409     @_rodauth ||= self.class.rodauth.new(self)
410   end
411 end