Finalize Account Settings and switch to a dedicated page #681
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary & Motivation
Convert the Account Settings from a modal dialog accessed through the
AvatarButton
to a standalone page, now accessible via the Account menu in the Side Menu. This change improves usability and provides a more structured experience for managing account details.A new endpoint has been implemented to update the tenant name (account name) when saving changes.
Previously, all tenant-related API endpoints used
/tenants/{id}
, but these have been updated to/tenants/current
for improved clarity and consistency. BothGET
andPUT
endpoints now use this new convention. To support this change, a newGetCurrentTenantAsync
method has been added to theTenantRepository
, and theGetTenant
andGetCurrentTenant
commands have been updated to use this method.All related frontend components, commands, and tests have been updated accordingly.
Checklist