-
Notifications
You must be signed in to change notification settings - Fork 2
feat: add registration timestamp to passkey data #567
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 1 out of 6 changed files in this pull request and generated no comments.
Files not reviewed (5)
- app/aws/PasskeyDB.scala: Language not supported
- app/controllers/PasskeyController.scala: Language not supported
- app/models/Passkey.scala: Language not supported
- app/views/userAccount.scala.html: Language not supported
- test/logic/PasskeyTest.scala: Language not supported
7fb4252
to
df9180d
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 1 out of 6 changed files in this pull request and generated no comments.
Files not reviewed (5)
- app/aws/PasskeyDB.scala: Language not supported
- app/controllers/PasskeyController.scala: Language not supported
- app/models/Passkey.scala: Language not supported
- app/views/userAccount.scala.html: Language not supported
- test/logic/PasskeyTest.scala: Language not supported
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like it's just whitespace changes in this file?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes there are no changes on the frontend. It's all in the template and serverside as we generate the timestamp there.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tested locally and noticed that the key is being displayed twice, once with the user-friendly version and one with the code version.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good!
What is the purpose of this change?
It adds the time that a passkey was created and registered in Janus to the database and shows it in the UI.
What is the value of this change and how do we measure success?
We can see when a passkey was created and use this data for troubleshooting or for sorting and filtering.
Any additional notes?
See also #566