module Rodauth::InstanceMethods

Public Instance Methods

rodauth(name=nil) click to toggle 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