Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
10 changes: 10 additions & 0 deletions .browserslistrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,17 @@ last 2 versions
> 0.5%
Firefox ESR
not dead
not and_qq 14.9
not and_uc 15.5
not android 142
not kaios 2.5
not kaios 3.0-3.1
not op_mini all
not op_mob 80
not opera 122
not opera 121
not samsung 28
not samsung 29
not samsung 27
# For IE 9-11 support, please uncomment the next line and adjust as needed
# IE 9-11
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ name: build-run
on:
# Triggers the workflow on push or pull request events for specific branches
push:
branches: [main, dev, angular-update-18]
branches: [main, dev, dev-angular-19]
pull_request:
branches: [main, dev, angular-update-18]
branches: [main, dev, dev-angular-19]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
Expand All @@ -27,7 +27,7 @@ jobs:
# no support for lts as of now with github actions.
# issue link : https://github.com/actions/setup-node/issues/26
# lts/gallium node v19.7.0 (npm v9.5.0)
node-version: '22.9.0'
node-version: '22.12.0'

- name: Remove node_modules
run: rm -rf node_modules
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-docker-hub-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Publish Image in Docker Hub

on:
push:
branches: [main, dev, angular-update]
branches: [main, dev, dev-angular-19]

jobs:
build:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Tests

on:
push:
branches: [main, dev, angular-update-17-2]
branches: [main, dev, dev-angular-19]
pull_request:
branches: [main, dev, angular-update-17-2]
branches: [main, dev, dev-angular-19]

jobs:
testRigor:
Expand Down
2 changes: 1 addition & 1 deletion .htmlhintrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"attr-lowercase": false,
"attr-value-double-quotes": true,
"tag-pair": true,
"spec-char-escape": true,
"spec-char-escape": false,
"id-unique": true,
"src-not-empty": true,
"attr-no-duplication": true,
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ All these environment variables can be set when using Docker or Docker Compose:
| ------------------------------------ | -------------------------------------------------------------------- | ----------------------------------------------------------------------------------- |
| FINERACT_API_URLS | Fineract server list | https://sandbox.mifos.community,https://demo.mifos.community,https://localhost:8443 |
| FINERACT_API_URL | Default Fineract server | https://localhost:8443 |
| FINERACT_API_ACTUATOR | Default Fineract Actuator endpoint | /fineract-provider |
| FINERACT_PLATFORM_TENANT_IDENTIFIER | Default tenant identifier (must align with Fineract `tenants` table) | default |
| FINERACT_PLATFORM_TENANTS_IDENTIFIER | Tenant identifier list (must align with Fineract `tenants` table) | - |

Expand Down
24 changes: 24 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,30 @@
},
"@angular-eslint/schematics:library": {
"setParserOptionsProject": true
},
"@schematics/angular:component": {
"type": "component"
},
"@schematics/angular:directive": {
"type": "directive"
},
"@schematics/angular:service": {
"type": "service"
},
"@schematics/angular:guard": {
"typeSeparator": "."
},
"@schematics/angular:interceptor": {
"typeSeparator": "."
},
"@schematics/angular:module": {
"typeSeparator": "."
},
"@schematics/angular:pipe": {
"typeSeparator": "."
},
"@schematics/angular:resolver": {
"typeSeparator": "."
}
}
}
5 changes: 4 additions & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ const tsParser = require('@typescript-eslint/parser');

module.exports = [
{
ignores: ['projects/**/*']
ignores: [
'projects/**/*',
'dist/**/*'
]
},

// TS files configuration
Expand Down
Loading