This is an automated email from the ASF dual-hosted git repository.
Aman-Mittal pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/fineract-backoffice-ui.git
from 10e5580 Merge pull request #91 from
apache/dependabot/github_actions/actions/upload-artifact-7.0.1
add 74dd7ec feat(interceptors): add correlation ID interceptor to HTTP
requests
add 7a2ab82 refactor(core): improve UUID generation using
crypto.getRandomValues
add af51081 feat(users): add send password to email checkbox to user form
Added a new "Send Password To Email" checkbox to the user form to let admins
opt-in to sending the user's password to their registered email address during
user creation or editing. Wired the new `sendPasswordToEmail` field to both
user create and update API payloads, added the required English i18n
translation key, and updated the checkbox container styling to properly align
the two password-related checkboxes.
new a8c015f Merge pull request #85 from
Aman-Mittal/feature/correlation-id-interceptor
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
package-lock.json | 725 +++++++++++++++++++--
src/app/app.config.ts | 10 +-
.../correlation-id.interceptor.spec.ts | 78 +++
.../interceptors/correlation-id.interceptor.ts | 77 +++
.../clients/client-action-dialog.component.spec.ts | 9 +-
.../clients/client-action-dialog.component.ts | 32 +-
.../features/clients/client-view.component.spec.ts | 42 +-
src/app/features/clients/client-view.component.ts | 106 ++-
.../loans/collateral/collateral-form.component.ts | 3 +-
.../features/security/users/user-form.component.ts | 9 +-
src/assets/i18n/en.json | 3 +-
11 files changed, 1000 insertions(+), 94 deletions(-)
create mode 100644 src/app/core/interceptors/correlation-id.interceptor.spec.ts
create mode 100644 src/app/core/interceptors/correlation-id.interceptor.ts