This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/npm_and_yarn/types/jasmine-6.0.0
in repository https://gitbox.apache.org/repos/asf/fineract-backoffice-ui.git
discard dee35e2 Bump @types/jasmine from 5.1.15 to 6.0.0
add 76d85c3 Revert "FINERACT-2527: Initial Front-end MVP baseline for
GSOC 2026"
add f74ffe2 Merge pull request #9 from
apache/revert-1-FINERACT-2440/Base-Project-Setup
add fb9e1f8 send commit notifications to proper list
add cf0470b FINERACT-2527: Initial POC implementation with login
add 0fb3abb Merge pull request #2 from
Aman-Mittal/FINERACT-2440/Extended-Baseline
add 9f3e75b send PR notifications to proper list
add a6c713c FINERACT:2527 CI fixes
add 6997a7c Merge pull request #15 from Aman-Mittal/FINERACT-2527/CI_Fixes
add 9eb7850 Bump @types/jasmine from 5.1.15 to 6.0.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 (dee35e2)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/types/jasmine-6.0.0 (9eb7850)
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 | 3 +
.github/workflows/ci.yml | 78 +-
.gitignore | 5 +
.prettierrc | 9 +-
.rat-excludes | 15 +-
ARCHITECTURE_DECISIONS.md | 55 +
EXTENDED_PLAN.md | 92 ++
FINERACT_CONTEXT.md | 100 ++
SETUP.md | 38 +-
angular.json | 15 +-
deploy/Dockerfile | 8 +-
deploy/docker-compose.yml | 3 +
deploy/{docker-compose.yml => entrypoint.sh} | 31 +-
package-lock.json | 1048 +++++++++++---------
package.json | 28 +-
public/config.json | 4 +
scripts/check-license.sh | 8 +-
.rat-excludes => scripts/setup-ssl.sh | 54 +-
src/app/app.component.html | 24 -
src/app/app.component.spec.ts | 15 +-
src/app/app.component.ts | 2 +
src/app/app.config.ts | 22 +-
src/app/app.routes.ts | 32 +-
src/app/core/guards/auth.guard.spec.ts | 67 ++
.../core/guards/auth.guard.ts} | 25 +-
src/app/core/interceptors/auth.interceptor.spec.ts | 68 ++
src/app/core/interceptors/auth.interceptor.ts | 60 ++
src/app/core/services/auth.service.spec.ts | 81 ++
src/app/core/services/auth.service.ts | 158 +++
src/app/core/services/config.service.spec.ts | 69 ++
src/app/core/services/config.service.ts | 107 ++
src/app/core/services/idle.service.spec.ts | 90 ++
src/app/core/services/idle.service.ts | 183 ++++
.../dashboard/system-status.component.spec.ts | 58 ++
.../features/dashboard/system-status.component.ts | 58 ++
src/app/features/login/login.component.spec.ts | 111 +++
src/app/features/login/login.component.ts | 308 ++++++
src/app/layout/header.component.spec.ts | 76 ++
src/app/layout/header.component.ts | 157 +++
src/app/layout/inactivity-dialog.component.ts | 71 ++
src/app/layout/main-layout.component.spec.ts | 57 ++
src/app/layout/main-layout.component.ts | 69 ++
.../sidebar.component.spec.ts} | 31 +-
src/app/layout/sidebar.component.ts | 99 ++
src/assets/i18n/en.json | 33 +
src/assets/i18n/hi.json | 33 +
src/assets/i18n/ko.json | 33 +
.../{environment.ts => environment.sandbox.ts} | 2 +-
src/index.html | 11 +-
src/styles.scss | 61 +-
src/styles/_common.scss | 91 ++
51 files changed, 3331 insertions(+), 625 deletions(-)
create mode 100644 .asf.yaml
create mode 100644 ARCHITECTURE_DECISIONS.md
create mode 100644 EXTENDED_PLAN.md
create mode 100644 FINERACT_CONTEXT.md
copy deploy/{docker-compose.yml => entrypoint.sh} (66%)
create mode 100644 public/config.json
copy .rat-excludes => scripts/setup-ssl.sh (54%)
mode change 100644 => 100755
create mode 100644 src/app/core/guards/auth.guard.spec.ts
copy src/{environments/environment.prod.ts => app/core/guards/auth.guard.ts}
(52%)
create mode 100644 src/app/core/interceptors/auth.interceptor.spec.ts
create mode 100644 src/app/core/interceptors/auth.interceptor.ts
create mode 100644 src/app/core/services/auth.service.spec.ts
create mode 100644 src/app/core/services/auth.service.ts
create mode 100644 src/app/core/services/config.service.spec.ts
create mode 100644 src/app/core/services/config.service.ts
create mode 100644 src/app/core/services/idle.service.spec.ts
create mode 100644 src/app/core/services/idle.service.ts
create mode 100644 src/app/features/dashboard/system-status.component.spec.ts
create mode 100644 src/app/features/dashboard/system-status.component.ts
create mode 100644 src/app/features/login/login.component.spec.ts
create mode 100644 src/app/features/login/login.component.ts
create mode 100644 src/app/layout/header.component.spec.ts
create mode 100644 src/app/layout/header.component.ts
create mode 100644 src/app/layout/inactivity-dialog.component.ts
create mode 100644 src/app/layout/main-layout.component.spec.ts
create mode 100644 src/app/layout/main-layout.component.ts
copy src/app/{app.component.spec.ts => layout/sidebar.component.spec.ts} (60%)
create mode 100644 src/app/layout/sidebar.component.ts
copy src/environments/{environment.ts => environment.sandbox.ts} (92%)
create mode 100644 src/styles/_common.scss