Skip to content
Open
Show file tree
Hide file tree
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
3,126 changes: 3,126 additions & 0 deletions semana17/Filtros/package-lock.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions semana18/Autenticação/requests.rest
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# @name signup

POST http://localhost:3003/user/signup
Content-Type: application/json

{
"name": "Norman Osbourne",
"nickname": "Green Goblin",
"email": "osbourne@oscorp.com" ,
"password": "ihatepeter"
}

###

@id = {{signup.response.body.newUser.id}}

PUT http://localhost:3003/user/edit/{{id}}
Content-Type: application/json

{
"name": "Harry Osbourne"
}
Loading