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-loan-origination.git
from eb35a33 Merge pull request #59 from
apache/dependabot/npm_and_yarn/frontend/postcss-8.5.25
add 81a2e8b FINERACT-2442: Add staff portal UI - Angular frontend
scaffold and staff dashboard
add 314aba1 FINERACT-2442: Restore package-lock.json to match upstream
baseline
new 5ac92c9 Merge pull request #65 from
KRYSTALM7/feature/FINERACT-2442-staff-portal-ui
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:
.gitignore | 4 +
.rat-excludes | 5 +-
frontend/src/app/app.config.ts | 11 +-
frontend/src/app/app.routes.ts | 69 ++-
.../guards/{auth.guard.ts => staff-auth.guard.ts} | 15 +-
.../src/app/core/interceptors/auth.interceptor.ts | 5 +-
.../core/interceptors/staff-auth.interceptor.ts | 57 ++
.../app/core/interceptors/tenant.interceptor.ts | 10 +-
frontend/src/app/core/models/index.ts | 1 +
.../src/app/core/models/staff-application.model.ts | 79 +++
frontend/src/app/core/services/auth.service.ts | 49 +-
.../services/customer-loan-application.service.ts | 39 +-
frontend/src/app/core/services/index.ts | 1 +
.../app/core/services/loan-application.service.ts | 23 +-
.../src/app/core/services/staff-auth.service.ts | 150 +++++
.../services/staff-loan-application.service.ts | 81 +++
.../app/features/my-loans/my-loans.component.html | 17 +-
.../app/features/my-loans/my-loans.component.scss | 57 +-
.../staff-application-detail.component.ts | 609 +++++++++++++++++++++
.../staff-application-list.component.ts | 245 +++++++++
.../staff/dashboard/staff-dashboard.component.ts | 310 +++++++++++
.../features/staff/login/staff-login.component.ts | 247 +++++++++
.../layout/staff-layout/staff-layout.component.ts | 432 +++++++++++++++
frontend/src/styles.scss | 6 +
24 files changed, 2449 insertions(+), 73 deletions(-)
copy frontend/src/app/core/guards/{auth.guard.ts => staff-auth.guard.ts} (76%)
create mode 100644 frontend/src/app/core/interceptors/staff-auth.interceptor.ts
create mode 100644 frontend/src/app/core/models/staff-application.model.ts
create mode 100644 frontend/src/app/core/services/staff-auth.service.ts
create mode 100644
frontend/src/app/core/services/staff-loan-application.service.ts
create mode 100644
frontend/src/app/features/staff/applications/staff-application-detail.component.ts
create mode 100644
frontend/src/app/features/staff/applications/staff-application-list.component.ts
create mode 100644
frontend/src/app/features/staff/dashboard/staff-dashboard.component.ts
create mode 100644
frontend/src/app/features/staff/login/staff-login.component.ts
create mode 100644
frontend/src/app/layout/staff-layout/staff-layout.component.ts