Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
57 commits
Select commit Hold shift + click to select a range
68e558c
feat(auth): implement password authentication feature
Ubisoft-potato Jul 29, 2025
ea06bb8
feat(auth): add email templates for password reset, password change, …
Ubisoft-potato Jul 31, 2025
33af685
feat(auth): implement SendGrid and SES email services for password re…
Ubisoft-potato Aug 1, 2025
6ecbaf0
feat(auth): implement password setup process with email notifications
Ubisoft-potato Aug 11, 2025
e87784a
chore(auth): add password setup and validation methods in mock client
Ubisoft-potato Aug 25, 2025
629ae78
refactor(auth): add credentials record creation for password setup pr…
Ubisoft-potato Aug 25, 2025
2acd2ee
feat: reorder password setup check and ensure credentials record crea…
Ubisoft-potato Aug 27, 2025
333a692
refactor(auth): remove ValidatePasswordResetToken functionality and r…
Ubisoft-potato Aug 28, 2025
4526bfb
chore(auth): enhance password credential checks
Ubisoft-potato Aug 29, 2025
cfb5fef
chore(deps): update AWS SDK and crypto dependencies
Ubisoft-potato Sep 3, 2025
d241181
feat(auth): implement password reset functionality with email notific…
Ubisoft-potato Sep 5, 2025
4a791b5
feat(auth): add password reset and setup service endpoints
Ubisoft-potato Sep 8, 2025
7439235
chore(auth): localize password setup and reset email messages
Ubisoft-potato Sep 8, 2025
275d750
chore(auth): restructure email service configuration for better organ…
Ubisoft-potato Sep 9, 2025
40049b5
feat(auth): add multilingual support for password notification emails
Ubisoft-potato Sep 9, 2025
c5c08d2
chore(auth): format email service methods for improved readability
Ubisoft-potato Sep 9, 2025
fc049f1
fix(auth): improve error handling for password setup email logic
Ubisoft-potato Sep 12, 2025
59f6f43
fix(auth): enhance error handling for password credential checks
Ubisoft-potato Sep 15, 2025
030b4c4
fix(auth): update password instead of creating new credentials during…
Ubisoft-potato Sep 16, 2025
44ace66
refactor(auth): remove password setup email logic for existing users
Ubisoft-potato Sep 18, 2025
de8541b
fix(auth): add mock credentials storage for testing password setup
Ubisoft-potato Sep 18, 2025
6cfdc2e
refactor(auth): remove internal password setup process and related em…
Ubisoft-potato Sep 18, 2025
f44a7de
feat(auth): add password authentication toggle for organizations
Ubisoft-potato Sep 19, 2025
a7fffd2
fix: GetMe test
Ubisoft-potato Sep 20, 2025
1b08e45
feat(auth): implement authentication settings for organizations
Ubisoft-potato Sep 23, 2025
63bca0a
feat(auth): refactor organization authentication settings handling
Ubisoft-potato Sep 23, 2025
d6b52f5
feat(auth): update organization authentication settings to include mu…
Ubisoft-potato Sep 23, 2025
8233036
chore(auth): update import paths to use v2 package structure
Ubisoft-potato Sep 26, 2025
0f79411
chore(auth): refactor password authentication methods to support mult…
Ubisoft-potato Sep 30, 2025
22bad80
chore(auth): enhance password and email error handling with detailed …
Ubisoft-potato Oct 1, 2025
12537a9
chore(auth): update password reset process documentation and dependen…
Ubisoft-potato Oct 23, 2025
4149379
fix(auth): add validation for identical current and new passwords
Ubisoft-potato Oct 26, 2025
cb7e3b2
feat(auth): add MailerSend email service integration and configuration
Ubisoft-potato Oct 27, 2025
d21e40b
refactor(auth): improve function signature formatting for SendPasswor…
Ubisoft-potato Oct 27, 2025
c239dc3
feat(auth): implement deletion of associated credentials during accou…
Ubisoft-potato Oct 29, 2025
19809a4
feat(auth): update password authentication handling to use new Authen…
Ubisoft-potato Oct 30, 2025
b9fde99
test(auth): add helper function for default authentication settings i…
Ubisoft-potato Oct 30, 2025
b42973a
chore: update template html
cre8ivejp Nov 4, 2025
e8c7645
feat(auth): update email templates and rendering for password notific…
Ubisoft-potato Nov 5, 2025
ffdabb2
feat(auth): standardize formatting of account response fields in GetM…
Ubisoft-potato Nov 10, 2025
8035945
test(auth): enhance account tests with credential storage interaction…
Ubisoft-potato Nov 10, 2025
88f6458
chore: skip parse ttl when password auth not enable
Ubisoft-potato Nov 11, 2025
40ca193
feat: default password setting
Ubisoft-potato Nov 11, 2025
d43d310
chore(auth): improve error message for password setup when email serv…
Ubisoft-potato Nov 13, 2025
99fcff6
fix: 404 error when trying to access the logo
cre8ivejp Nov 13, 2025
dbf917e
fix: update logo path in the values files
cre8ivejp Nov 13, 2025
ed257ff
chore: update logo email
cre8ivejp Nov 13, 2025
37ab107
feat(auth): implement magic link authentication flow with email verif…
Ubisoft-potato Nov 14, 2025
b5f1b50
feat(auth): implement password sign-in and Google OIDC token exchange…
Ubisoft-potato Dec 10, 2025
9144847
chore: rebase main
Ubisoft-potato Feb 18, 2026
99e95ec
test: fix api
Ubisoft-potato Mar 30, 2026
353b804
chore: password config
Ubisoft-potato Mar 30, 2026
dc3dad6
chore: go mod
Ubisoft-potato Apr 1, 2026
7ef03e4
chore: rebase main
Ubisoft-potato May 25, 2026
7ed5fca
chore: rebase main
Ubisoft-potato Jun 1, 2026
8cddef2
test: enhance account retrieval tests with credential checks
Ubisoft-potato Jun 3, 2026
072bd7b
fix: go vet
Ubisoft-potato Aug 26, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions api-description/apidocs.swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5259,6 +5259,8 @@ definitions:
lastSeen:
type: string
format: int64
passwordSetupRequired:
type: boolean
accountConsoleAccountEnvironmentRole:
type: object
properties:
Expand Down
Loading
Loading