summaryrefslogtreecommitdiff
path: root/app/models/webauthn_registration.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/webauthn_registration.rb')
-rw-r--r--app/models/webauthn_registration.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/webauthn_registration.rb b/app/models/webauthn_registration.rb
index 86e7e2dedc3..c8b2513e702 100644
--- a/app/models/webauthn_registration.rb
+++ b/app/models/webauthn_registration.rb
@@ -12,5 +12,5 @@ class WebauthnRegistration < ApplicationRecord
validates :credential_xid, :public_key, :counter, presence: true
validates :name, length: { minimum: 0, allow_nil: false }
validates :counter,
- numericality: { only_integer: true, greater_than_or_equal_to: 0, less_than_or_equal_to: 2**32 - 1 }
+ numericality: { only_integer: true, greater_than_or_equal_to: 0, less_than_or_equal_to: 2**32 - 1 }
end