Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

corrected description for angular/ngrx practical task #1356

Merged
merged 1 commit into from
Nov 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions tasks/angular/NgRX.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,15 +100,16 @@ Here you can find an example of admin page: [Admin page reference](./admin.jpg):
- list of videos from API YouTube.
2. NgRx storage must only be changed in the following cases:
- new response from the YouTube API is received;
- new card is added using _Admin Page_.
- new card is added using _Admin Page_;
- card is deleted;
3. _Custom Cards_ must contain the following information:
- title
- description
- link to the image
- link to video
- creation date (current date)
4. Information about _Custom Cards_ must be saved until your application is reloaded even if you perform requests to
YouTube API. In other words, all custom cards are one-off session data and suppose to be saved in localStorage.
YouTube API. In other words, all custom cards are one-off session data and suppose not to be saved in localStorage.

#### Expected behavior

Expand Down
Loading