Skip to content

Commit 3414797

Browse files
authored
Update README.md
1 parent 7a81c68 commit 3414797

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Task Service
22

3-
Task Service is a sample application used to handle Tasks by User. The goal here is to show in a simple project how I enjoy desigin and implementing the solutions I have creates after a few yeras of experience working with NodeJs. I am always open mind to change it since there is no silver bullet from my perspective.
3+
Task Service is a sample application used to handle Tasks by User. The goal here is to show in a simple project how I enjoy designing and implementing the software solutions I have creates after years of experience working as Software Engineer (since 2004) specially with NodeJs. I am always open mind to change it since there is no silver bullet to build software from my perspective.
44

55
The base structure of a `Task` is:
66

@@ -17,7 +17,7 @@ The base structure of a `Task` is:
1717

1818
The REST API / GraphQL API is protected by user authentication using a `bearer` token (JWT). Before consuming it, you must first authenticate using the `POST /api/v1/auth` endpoint passing the user credentials and a token will be generated. Use it on the `authorization` http request header attribute. Use POSTMAN collection available on the docs folder.
1919

20-
⚠️ **Important**: There is 2 types of user. A `super` user that can handle all the tasks and a `non-super` user which can only handle its own tasks. You may get some `401` or `403` errors if you try to acccess wrong IDs.
20+
⚠️ **Important**: In this project, there are two types of user. A `super` user that can handle all the tasks and a `non-super` user which can only handle its own tasks. You may get some `401` or `403` errors if a `non-super` user tried to acccess not allowed tasks.
2121

2222
Here is a structure of a `User`:
2323

0 commit comments

Comments
 (0)