Skip to content

Commit f9aa005

Browse files
committed
[CORE-6262] skip milestone
1 parent b3b5acf commit f9aa005

File tree

2 files changed

+11
-12
lines changed

2 files changed

+11
-12
lines changed

README.md

+8-10
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,31 @@
1-
# Practera-app-v3
1+
# Practera-app
22

33
![Build Status](https://codebuild.ap-southeast-2.amazonaws.com/badges?uuid=eyJlbmNyeXB0ZWREYXRhIjoiYVA3Zi9rVHlUSlNWT1VkZkY3R1FPS3pwd01EeWo4UTlFanUyQk1UanUveW1VRlgvdnhudVR3RUhsUXBhYk9kYXhmNnJTYjBramVuTkRTc3JyNkZJajZFPSIsIml2UGFyYW1ldGVyU3BlYyI6IkVabm9Va3hoUnhhSmNTSTEiLCJtYXRlcmlhbFNldFNlcmlhbCI6MX0%3D&branch=master)
44

55
## Requirements
66

7-
- Ionic v6
8-
- Angular v13
7+
- Ionic v7
8+
- Angular v17
99

1010
## Development Notes
1111

1212
Run `npm install` to install necessary packages
1313

14-
Run `npm run lint` to lint appv2 codebase
14+
Run `npm run lint` to lint app codebase
1515

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
1917

2018
Run `npm run i18n` to update coverage of translateable static text
2119

2220
### Starting a development server calling the stage environment
2321

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
2523

2624
### Starting a development server on the local environment
2725

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
2927

30-
Run `npm run v3` to serve appv3 on localhost
28+
Run `npm start` to serve app on localhost
3129

3230
### Release Processes
3331

projects/v3/src/app/services/notifications.service.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -462,10 +462,11 @@ export class NotificationsService {
462462
}
463463

464464
if (
465-
Object.keys(todoItem.meta).length !== 0 &&
465+
todoItem.model !== 'Milestone' && // skip, due to indicator is determined by task and activity
466466
todoItem.name === 'New Item' &&
467467
todoItem.model !== null &&
468-
todoItem.is_done === false
468+
todoItem.is_done === false &&
469+
todoItem.model
469470
) {
470471
const key = UnlockIndicatorModel[todoItem.model];
471472

0 commit comments

Comments
 (0)