module Rodauth::InstanceMethods

  1. lib/rodauth.rb

Methods

Public Instance

  1. rodauth

Public Instance methods

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