# File lib/devise_two_factor/models/two_factor_authenticatable.rb, line 66
      def consume_otp!
        if self.consumed_timestep != current_otp_timestep
          self.consumed_timestep = current_otp_timestep
          return save(validate: false)
        end

        false
      end