Update docs

Co-authored-by: Ezequiel Bellver <ebellver@itba.edu.ar>
Co-authored-by: Juan Barmasch <jbarmasch@itba.edu.ar>
This commit is contained in:
Santiago Lo Coco 2022-12-20 14:50:22 -03:00
parent daa8418332
commit 60a1027b7e
2 changed files with 100 additions and 334 deletions

View File

@ -17,8 +17,14 @@
### Presentación ### Presentación
#### Parcial
Puede verla en el siguiente [link](https://www.canva.com/design/DAFSnStE99g/k9QGkxyRYkvtTKGQK7vpTg/view). Puede verla en el siguiente [link](https://www.canva.com/design/DAFSnStE99g/k9QGkxyRYkvtTKGQK7vpTg/view).
#### Final
Puede verla en el siguiente [link](https://www.canva.com/design/DAFVUEarNQ4/D4Bi_6SiJX2HKUG3563iVg/view).
## Requerimientos ## Requerimientos
Debe instalar: Debe instalar:

View File

@ -9,13 +9,12 @@
"name": "Create user", "name": "Create user",
"protocolProfileBehavior": { "protocolProfileBehavior": {
"disabledSystemHeaders": { "disabledSystemHeaders": {
"connection": true,
"accept-encoding": true,
"accept": true,
"user-agent": true, "user-agent": true,
"accept": true,
"accept-encoding": true,
"connection": true,
"host": true "host": true
}, }
"strictSSL": true
}, },
"request": { "request": {
"auth": { "auth": {
@ -65,8 +64,19 @@
"method": "POST", "method": "POST",
"header": [], "header": [],
"body": { "body": {
"mode": "raw", "mode": "formdata",
"raw": "{\n \"username\": \"user\",\n \"password\": \"pass\"\n}", "formdata": [
{
"key": "username",
"value": "user",
"type": "default"
},
{
"key": "password",
"value": "pass",
"type": "default"
}
],
"options": { "options": {
"raw": { "raw": {
"language": "json" "language": "json"
@ -74,7 +84,7 @@
} }
}, },
"url": { "url": {
"raw": "http://localhost:8000/api/login", "raw": "http://localhost:8000/api/token",
"protocol": "http", "protocol": "http",
"host": [ "host": [
"localhost" "localhost"
@ -82,7 +92,7 @@
"port": "8000", "port": "8000",
"path": [ "path": [
"api", "api",
"login" "token"
] ]
} }
}, },
@ -94,7 +104,7 @@
"method": "GET", "method": "GET",
"header": [], "header": [],
"url": { "url": {
"raw": "http://localhost:8000/api/users/1", "raw": "http://localhost:8000/api/users/me",
"protocol": "http", "protocol": "http",
"host": [ "host": [
"localhost" "localhost"
@ -103,7 +113,7 @@
"path": [ "path": [
"api", "api",
"users", "users",
"1" "me"
] ]
} }
}, },
@ -159,35 +169,6 @@
}, },
"response": [] "response": []
}, },
{
"name": "Create document",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"test-doc\",\n \"access\": [],\n \"owner\": \"usertest\",\n \"data\": \"Este es un documento de prueba.\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:8000/api/documents",
"protocol": "http",
"host": [
"localhost"
],
"port": "8000",
"path": [
"api",
"documents"
]
}
},
"response": []
},
{ {
"name": "Get documents", "name": "Get documents",
"protocolProfileBehavior": { "protocolProfileBehavior": {
@ -220,106 +201,6 @@
}, },
"response": [] "response": []
}, },
{
"name": "Update document (cambiar document_id)",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"doc-test\",\n \"data\": \"Este es un documento.\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:8000/api/documents/{{document_id}}",
"protocol": "http",
"host": [
"localhost"
],
"port": "8000",
"path": [
"api",
"documents",
"{{document_id}}"
]
}
},
"response": []
},
{
"name": "Get documents",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:8000/api/documents",
"protocol": "http",
"host": [
"localhost"
],
"port": "8000",
"path": [
"api",
"documents"
]
}
},
"response": []
},
{
"name": "Search documents",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:8000/api/documents?query=*documento*",
"protocol": "http",
"host": [
"localhost"
],
"port": "8000",
"path": [
"api",
"documents"
],
"query": [
{
"key": "query",
"value": "*documento*"
}
]
}
},
"response": []
},
{ {
"name": "Create document", "name": "Create document",
"request": { "request": {
@ -349,44 +230,6 @@
}, },
"response": [] "response": []
}, },
{
"name": "Search documents",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:8000/api/documents?query=*documento*",
"protocol": "http",
"host": [
"localhost"
],
"port": "8000",
"path": [
"api",
"documents"
],
"query": [
{
"key": "query",
"value": "*documento*"
}
]
}
},
"response": []
},
{ {
"name": "Create table", "name": "Create table",
"request": { "request": {
@ -477,133 +320,13 @@
"response": [] "response": []
}, },
{ {
"name": "Add column", "name": "Add sort",
"request": { "request": {
"method": "PUT", "method": "PUT",
"header": [], "header": [],
"body": { "body": {
"mode": "raw", "mode": "raw",
"raw": "{\n \"column\": \"custard\",\n \"type\": \"TEXT\"\n}", "raw": "{\n \"property\": \"name\",\n \"order\": \"ASC\",\n \"priority\": 1\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:8000/api/tables/table-test",
"protocol": "http",
"host": [
"localhost"
],
"port": "8000",
"path": [
"api",
"tables",
"table-test"
]
}
},
"response": []
},
{
"name": "Insert data",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"column_data\": [\"shell\", \"yes\"]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:8000/api/tables/table-test",
"protocol": "http",
"host": [
"localhost"
],
"port": "8000",
"path": [
"api",
"tables",
"table-test"
]
}
},
"response": []
},
{
"name": "Edit data",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"columns\": [\"custard\"],\n \"columns_data\": [\"no\"],\n \"row_number\": \"1\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:8000/api/tables/table-test",
"protocol": "http",
"host": [
"localhost"
],
"port": "8000",
"path": [
"api",
"tables",
"table-test"
]
}
},
"response": []
},
{
"name": "Insert data",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"column_data\": [\"main\", \"nein\"]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:8000/api/tables/table-test",
"protocol": "http",
"host": [
"localhost"
],
"port": "8000",
"path": [
"api",
"tables",
"table-test"
]
}
},
"response": []
},
{
"name": "Create sort",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{}",
"options": { "options": {
"raw": { "raw": {
"language": "json" "language": "json"
@ -627,6 +350,40 @@
}, },
"response": [] "response": []
}, },
{
"name": "Sort table",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:8000/api/tables/3/sort",
"protocol": "http",
"host": [
"localhost"
],
"port": "8000",
"path": [
"api",
"tables",
"3",
"sort"
]
}
},
"response": []
},
{ {
"name": "Add sort", "name": "Add sort",
"request": { "request": {
@ -676,7 +433,7 @@
} }
}, },
"url": { "url": {
"raw": "http://localhost:8000/api/tables/table-test/sort", "raw": "http://localhost:8000/api/tables/3/sort",
"protocol": "http", "protocol": "http",
"host": [ "host": [
"localhost" "localhost"
@ -685,44 +442,13 @@
"path": [ "path": [
"api", "api",
"tables", "tables",
"table-test", "3",
"sort" "sort"
] ]
} }
}, },
"response": [] "response": []
}, },
{
"name": "Create filter",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:8000/api/tables/table-test/filter",
"protocol": "http",
"host": [
"localhost"
],
"port": "8000",
"path": [
"api",
"tables",
"table-test",
"filter"
]
}
},
"response": []
},
{ {
"name": "Add filter", "name": "Add filter",
"request": { "request": {
@ -787,6 +513,40 @@
} }
}, },
"response": [] "response": []
},
{
"name": "Log out",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:8000/api/tables/table-test/filter",
"protocol": "http",
"host": [
"localhost"
],
"port": "8000",
"path": [
"api",
"tables",
"table-test",
"filter"
]
}
},
"response": []
} }
], ],
"auth": { "auth": {
@ -794,7 +554,7 @@
"bearer": [ "bearer": [
{ {
"key": "token", "key": "token",
"value": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6InVzZXIiLCJleHAiOjE2Njk4ODI0Mjl9.ixmxpfw9FfJe0FfZNYIxCz8GXtxqXaN4kMzFn1p5q7A", "value": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJ1c2VyOjkiLCJleHAiOjE2NzE2MjA4ODJ9.IppWpp3UgwjqZdPapo4z9uMN6jwfHpI84NONhA0OBDI",
"type": "string" "type": "string"
} }
] ]