class AuthFx::LockedUserError
Public Class Methods
new(locked_until)
click to toggle source
Calls superclass method
# File lib/fx-auth/errors.rb, line 29 def initialize locked_until super "Your account is locked. You can try to sign on again in 30 minutes." # TODO localize @locked_until = locked_until # TODO display time in message? end