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 cd4772c Merge pull request #175 from apache/chore/fineract-spec-sync
add 65b7f6e refactor(routes): split app.routes.ts into per-feature route
files
add c8fd3e2 feat(http): add per-request interceptor opt-outs via
HttpContext
new c7e4ef9 Merge pull request #177 from
Aman-Mittal/refactor/split-routes-per-feature
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:
src/app/app.routes.ts | 1920 +-------------------
src/app/core/http/http-context.ts | 67 +
.../core/interceptors/error.interceptor.spec.ts | 16 +
src/app/core/interceptors/error.interceptor.ts | 6 +-
.../core/interceptors/loading.interceptor.spec.ts | 12 +
src/app/core/interceptors/loading.interceptor.ts | 6 +-
src/app/features/accounting/accounting.routes.ts | 170 ++
src/app/features/admin/admin.routes.ts | 56 +
.../calendars.routes.ts} | 16 +-
src/app/features/campaigns/campaigns.routes.ts | 66 +
.../tasks.routes.ts => centers/centers.routes.ts} | 14 +-
src/app/features/clients/clients.routes.ts | 136 ++
.../tasks.routes.ts => fintech/fintech.routes.ts} | 14 +-
.../tasks.routes.ts => groups/groups.routes.ts} | 14 +-
.../tasks.routes.ts => interop/interop.routes.ts} | 25 +-
src/app/features/loans/loans.routes.ts | 162 ++
.../meetings.routes.ts} | 16 +-
.../{tasks/tasks.routes.ts => mix/mix.routes.ts} | 16 +-
.../features/organization/organization.routes.ts | 129 ++
src/app/features/products/products.routes.ts | 407 +++++
.../reporting.routes.ts} | 10 +-
src/app/features/security/security.routes.ts | 52 +
.../settings.routes.ts} | 24 +-
src/app/features/spm/spm.routes.ts | 60 +
src/app/features/system/system.routes.ts | 288 +++
.../tasks.routes.ts => tellers/tellers.routes.ts} | 29 +-
src/app/features/transfers/transfers.routes.ts | 63 +
.../working-capital/working-capital.routes.ts | 114 ++
28 files changed, 1986 insertions(+), 1922 deletions(-)
create mode 100644 src/app/core/http/http-context.ts
create mode 100644 src/app/features/accounting/accounting.routes.ts
create mode 100644 src/app/features/admin/admin.routes.ts
copy src/app/features/{tasks/tasks.routes.ts => calendars/calendars.routes.ts}
(64%)
create mode 100644 src/app/features/campaigns/campaigns.routes.ts
copy src/app/features/{tasks/tasks.routes.ts => centers/centers.routes.ts}
(70%)
create mode 100644 src/app/features/clients/clients.routes.ts
copy src/app/features/{tasks/tasks.routes.ts => fintech/fintech.routes.ts}
(72%)
copy src/app/features/{tasks/tasks.routes.ts => groups/groups.routes.ts} (70%)
copy src/app/features/{tasks/tasks.routes.ts => interop/interop.routes.ts}
(56%)
create mode 100644 src/app/features/loans/loans.routes.ts
copy src/app/features/{tasks/tasks.routes.ts => meetings/meetings.routes.ts}
(65%)
copy src/app/features/{tasks/tasks.routes.ts => mix/mix.routes.ts} (68%)
create mode 100644 src/app/features/organization/organization.routes.ts
create mode 100644 src/app/features/products/products.routes.ts
copy src/app/features/{tasks/tasks.routes.ts => reporting/reporting.routes.ts}
(77%)
create mode 100644 src/app/features/security/security.routes.ts
copy src/app/features/{tasks/tasks.routes.ts => settings/settings.routes.ts}
(56%)
create mode 100644 src/app/features/spm/spm.routes.ts
create mode 100644 src/app/features/system/system.routes.ts
copy src/app/features/{tasks/tasks.routes.ts => tellers/tellers.routes.ts}
(51%)
create mode 100644 src/app/features/transfers/transfers.routes.ts
create mode 100644 src/app/features/working-capital/working-capital.routes.ts