File tree 2 files changed +11
-12
lines changed
projects/v3/src/app/services
2 files changed +11
-12
lines changed Original file line number Diff line number Diff line change 1
- # Practera-app-v3
1
+ # Practera-app
2
2
3
3
![ Build Status] ( https://codebuild.ap-southeast-2.amazonaws.com/badges?uuid=eyJlbmNyeXB0ZWREYXRhIjoiYVA3Zi9rVHlUSlNWT1VkZkY3R1FPS3pwd01EeWo4UTlFanUyQk1UanUveW1VRlgvdnhudVR3RUhsUXBhYk9kYXhmNnJTYjBramVuTkRTc3JyNkZJajZFPSIsIml2UGFyYW1ldGVyU3BlYyI6IkVabm9Va3hoUnhhSmNTSTEiLCJtYXRlcmlhbFNldFNlcmlhbCI6MX0%3D&branch=master )
4
4
5
5
## Requirements
6
6
7
- - Ionic v6
8
- - Angular v13
7
+ - Ionic v7
8
+ - Angular v17
9
9
10
10
## Development Notes
11
11
12
12
Run ` npm install ` to install necessary packages
13
13
14
- Run ` npm run lint ` to lint appv2 codebase
14
+ Run ` npm run lint ` to lint app codebase
15
15
16
- Run ` npm run lintv3 ` to lint code in project appv3
17
-
18
- Run ` npm run v3 ` to launch AppV3 locally
16
+ Run ` npm start ` to launch App locally
19
17
20
18
Run ` npm run i18n ` to update coverage of translateable static text
21
19
22
20
### Starting a development server calling the stage environment
23
21
24
- Run ` npm run start ` to start a development server on your local, and calling stage-test .practera.com for API
22
+ Run ` npm start ` to start a development server on your local, and calling p2-stage .practera.com or core-graphql endpoint for API
25
23
26
24
### Starting a development server on the local environment
27
25
28
- Run ` npm run local ` to serve appv2 on localhost and calling 127.0.0.1:8080 for API
26
+ Run ` npm run local ` to serve app on localhost and calling 127.0.0.1:8080 for API
29
27
30
- Run ` npm run v3 ` to serve appv3 on localhost
28
+ Run ` npm start ` to serve app on localhost
31
29
32
30
### Release Processes
33
31
Original file line number Diff line number Diff line change @@ -462,10 +462,11 @@ export class NotificationsService {
462
462
}
463
463
464
464
if (
465
- Object . keys ( todoItem . meta ) . length !== 0 &&
465
+ todoItem . model !== 'Milestone' && // skip, due to indicator is determined by task and activity
466
466
todoItem . name === 'New Item' &&
467
467
todoItem . model !== null &&
468
- todoItem . is_done === false
468
+ todoItem . is_done === false &&
469
+ todoItem . model
469
470
) {
470
471
const key = UnlockIndicatorModel [ todoItem . model ] ;
471
472
You can’t perform that action at this time.
0 commit comments