module Devise::Models::Lockable

def lock_expired?

Tells if the lock is expired if :time unlock strategy is active
def lock_expired?
  if unlock_strategy_enabled?(:time)
    locked_at && locked_at < self.class.unlock_in.ago
  else
    false
  end
end