This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch
dependabot/npm_and_yarn/angular-eslint-21.3.1
in repository https://gitbox.apache.org/repos/asf/fineract-backoffice-ui.git
discard ae7373d chore(deps-dev): bump angular-eslint from 21.0.1 to 21.3.1
add 13c0747 feat: implement core backoffice features and infrastructure
add 6669097 Merge pull request #57 from
Aman-Mittal/feature/health-and-docs
add 05fc9ff chore(deps): bump actions/upload-artifact from 4 to 7
add 465ed25 Merge pull request #52 from
apache/dependabot/github_actions/actions/upload-artifact-7
add 923b728 Add CodeQL analysis workflow configuration
add 31ef2c1 Revise comments and add license details in codeql.yml
add ecdf8f9 fix: prettier and codeql
add 2684013 Merge pull request #58 from apache/code-ql
add 8828a6e fix: login custom tenant-id
add 77a6cef Merge pull request #59 from
mariowise/fix/fix-login-custom-tenant-id
add db59056 conform GitHub settings to Fineract standards
add 0d2b82b use single quotes
add 2958ac0 Merge pull request #60 from
meonkeys/improve-branch-protections
add a7da71f chore(deps-dev): bump angular-eslint from 21.0.1 to 21.4.0
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (ae7373d)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/angular-eslint-21.3.1 (a7da71f)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.asf.yaml | 18 ++
.github/workflows/ci.yml | 2 +-
.github/workflows/codeql.yml | 107 ++++++++
.prettierignore | 1 +
EXTENDED_PLAN.md | 7 +-
README.md | 20 +-
SETUP.md | 10 +-
angular.json | 9 +-
e2e/client.spec.ts | 59 +++++
e2e/login.spec.ts | 13 +
e2e/reporting.spec.ts | 46 ++++
package-lock.json | 98 +++----
package.json | 2 +-
proxy.conf.json | 9 +
public/assets/i18n/en.json | 120 +++++++--
public/config.json | 2 +-
src/app/app.config.ts | 6 +-
src/app/app.routes.ts | 102 ++++++++
src/app/core/interceptors/auth.interceptor.spec.ts | 27 +-
src/app/core/interceptors/auth.interceptor.ts | 28 +-
src/app/core/services/config.service.ts | 18 +-
.../accounting-closure-form.component.ts | 7 +-
.../accounting/accounting-rules-list.component.ts | 14 +-
.../accounting/charges/charge-form.component.ts | 290 +++++++++++++++++++++
.../accounting/charges/charges-list.component.ts | 115 ++++++++
.../accounting/gl-account-form.component.ts | 3 +
.../accounting/journal-entry-form.component.ts | 7 +-
src/app/features/centers/center-form.component.ts | 43 ++-
src/app/features/centers/centers-list.component.ts | 10 +-
src/app/features/clients/client-form.component.ts | 105 +++++++-
src/app/features/clients/clients-list.component.ts | 2 +-
src/app/features/groups/group-form.component.ts | 47 +++-
src/app/features/groups/groups-list.component.ts | 10 +-
src/app/features/loans/loan-form.component.ts | 4 +-
src/app/features/loans/loans-list.component.ts | 21 +-
.../rescheduling/reschedule-form.component.ts | 227 ++++++++++++++++
.../reschedule-requests-list.component.ts | 146 +++++++++++
src/app/features/login/login.component.ts | 36 +--
.../features/reporting/reports-list.component.ts | 100 +++++++
src/app/features/reporting/run-report.component.ts | 232 +++++++++++++++++
.../features/security/roles/role-form.component.ts | 247 ++++++++++++++++++
.../security/roles/roles-list.component.ts | 103 ++++++++
.../features/security/users/user-form.component.ts | 278 ++++++++++++++++++++
.../security/users/users-list.component.ts | 106 ++++++++
.../settings/global-configurations.component.ts | 114 ++++++++
.../features/settings/holidays-list.component.ts | 114 ++++++++
.../features/settings/working-days.component.ts | 167 ++++++++++++
.../tasks/checker-inbox/checker-inbox.component.ts | 184 +++++++++++++
.../view-payload-dialog.component.ts} | 52 ++--
.../features/tasks/tasks.routes.ts} | 17 +-
src/app/layout/sidebar.component.ts | 89 +++++++
.../create-office-dialog.component.ts | 144 ++++++++++
.../components/data-table/data-table.component.ts | 19 +-
src/assets/i18n/en.json | 118 ++++++++-
src/environments/environment.ts | 2 +-
55 files changed, 3681 insertions(+), 196 deletions(-)
create mode 100644 .github/workflows/codeql.yml
create mode 100644 e2e/client.spec.ts
create mode 100644 e2e/reporting.spec.ts
create mode 100644 proxy.conf.json
create mode 100644 src/app/features/accounting/charges/charge-form.component.ts
create mode 100644
src/app/features/accounting/charges/charges-list.component.ts
create mode 100644
src/app/features/loans/rescheduling/reschedule-form.component.ts
create mode 100644
src/app/features/loans/rescheduling/reschedule-requests-list.component.ts
create mode 100644 src/app/features/reporting/reports-list.component.ts
create mode 100644 src/app/features/reporting/run-report.component.ts
create mode 100644 src/app/features/security/roles/role-form.component.ts
create mode 100644 src/app/features/security/roles/roles-list.component.ts
create mode 100644 src/app/features/security/users/user-form.component.ts
create mode 100644 src/app/features/security/users/users-list.component.ts
create mode 100644 src/app/features/settings/global-configurations.component.ts
create mode 100644 src/app/features/settings/holidays-list.component.ts
create mode 100644 src/app/features/settings/working-days.component.ts
create mode 100644
src/app/features/tasks/checker-inbox/checker-inbox.component.ts
copy src/app/{layout/inactivity-dialog.component.ts =>
features/tasks/checker-inbox/view-payload-dialog.component.ts} (55%)
copy src/{main.ts => app/features/tasks/tasks.routes.ts} (71%)
create mode 100644
src/app/shared/components/create-office-dialog/create-office-dialog.component.ts