-
Notifications
You must be signed in to change notification settings - Fork 0
Backend Routes
JamesKoenig edited this page Feb 10, 2021
·
7 revisions
| Verb | URI Pattern | Description |
|---|---|---|
| GET | / | static landing page |
| Verb | URI Pattern | Description |
|---|---|---|
| POST | /api/users | creates a new user |
| DELETE | /api/users/:id | deletes a user |
| Verb | URI Pattern | Description |
|---|---|---|
| POST | /api/posts | uploads a post |
| PATCH | /api/posts/:id | updates a post |
| UPDATE | (same as above) | (same as above) |
| GET | /api/posts/:id | gets a specific post |
| DELETE | /api/posts/:id | deletes a specific post |
| Verb | URI Pattern | Description |
|---|---|---|
| POST | /api/posts/:id/like | likes a post |
| DELETE | /api/posts/:id/like | unlikes a post |
| Verb | URI Pattern | Description |
|---|---|---|
| POST | /api/posts/:id/reblog | reblogs a post |