Skip to content

Commit ebba916

Browse files
authored
Merge pull request #3441 from micpob/patch-26
Uniform text with the rest of the course
2 parents d2a1604 + a7d30f8 commit ebba916

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/content/13/en/part13c.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -503,9 +503,9 @@ The current code for the application is in its entirety on [GitHub](https://gith
503503
504504
<div class="tasks">
505505
506-
### Tasks 13.17-13.18.
506+
### Exercises 13.17-13.18.
507507
508-
#### Task 13.17.
508+
#### Exercise 13.17.
509509
510510
Delete all tables from your application's database.
511511
@@ -515,7 +515,7 @@ Make a migration that initializes the database. Add <i>created\_at</i> and <i>up
515515
516516
**NOTE2:** if you have to delete tables from the command line (i.e. you don't do the deletion by undoing the migration), you will have to delete the contents of the <i>migrations</i> table if you want your program to perform the migrations again.
517517
518-
#### Task 13.18.
518+
#### Exercise 13.18.
519519
520520
Expand your application (by migration) so that the blogs have a year written attribute, i.e. a field <i>year</i> which is an integer at least equal to 1991 but not greater than the current year. Make sure the application gives an appropriate error message if an incorrect value is attempted to be given for a year written.
521521
@@ -1057,9 +1057,9 @@ The current code for the application is in its entirety on [GitHub](https://gith
10571057
10581058
<div class="tasks">
10591059
1060-
### Tasks 13.19.-13.23.
1060+
### Exercises 13.19.-13.23.
10611061
1062-
#### Task 13.19.
1062+
#### Exercise 13.19.
10631063
10641064
Give users the ability to add blogs on the system to a <i>reading list</i>. When added to the reading list, the blog should be in the <i>unread</i> state. The blog can later be marked as <i>read</i>. Implement the reading list using a connection table. Make database changes using migrations.
10651065
@@ -1107,7 +1107,7 @@ Also modify the individual user route _GET /api/users/:id_ to return not only th
11071107
11081108
At this point, information about whether the blog is read or not does not need to be available.
11091109
1110-
#### Task 13.21.
1110+
#### Exercise 13.21.
11111111
11121112
Expand the single-user route so that each blog in the reading list shows also whether the blog has been read <i>and</i> the id of the corresponding join table row.
11131113
@@ -1482,9 +1482,9 @@ From the command line, you can also run rollbacks, i.e. undo migrations. The com
14821482
14831483
<div class="tasks">
14841484
1485-
### Task 13.24.
1485+
### Exercise 13.24.
14861486
1487-
#### Task 13.24.
1487+
#### Exercise 13.24.
14881488
14891489
Grand finale: [towards the end of part 4](/en/part4/token_authentication#problems-of-token-based-authentication) there was mention of a token-criticality problem: if a user's access to the system is decided to be revoked, the user may still use the token in possession to use the system.
14901490

0 commit comments

Comments
 (0)