... | ... | @@ -52,48 +52,86 @@ |
|
|
|
|
|
## User Story #40: Conteúdos
|
|
|
#50: **GET** `conteudo/listarConteudos`
|
|
|
>>>
|
|
|
{"Conteudo":[{"id":1,"name":"conteudo","descricao":"descricao do conteudo","linkImg":"ffffffff","ageGroup":{"id":2,"grupo":"1 a 2"},"eixo":{"name":"nome de algum eixo","id":2}}]}
|
|
|
>>>
|
|
|
```javascript
|
|
|
{
|
|
|
"Conteudo":[
|
|
|
{
|
|
|
"id":1,
|
|
|
"name":"conteudo",
|
|
|
"descricao":"descricao do conteudo",
|
|
|
"linkImg":"ffffffff",
|
|
|
"ageGroup":{
|
|
|
"id":2,
|
|
|
"grupo":"1 a 2"
|
|
|
},
|
|
|
"eixo":{
|
|
|
"name":"nome de algum eixo",
|
|
|
"id":2
|
|
|
}
|
|
|
}
|
|
|
]
|
|
|
}
|
|
|
```
|
|
|
|
|
|
|
|
|
#50: **POST** `conteudo/cadastrarConteudo`
|
|
|
|
|
|
#50: **DELETE** `conteudo/removerConteudo/{id}`
|
|
|
|
|
|
#50: **GET** `conteudo/buscarConteudo/{id}`
|
|
|
>>>
|
|
|
{"id":1,"name":"conteudo","descricao":"descricao do conteudo","linkImg":"ffffffff","ageGroup":{"id":2,"grupo":"1 a 2"},"eixo":{"name":"nome de algum eixo","id":2}}
|
|
|
>>>
|
|
|
|
|
|
```javascript
|
|
|
{
|
|
|
"id":1,
|
|
|
"name":"conteudo",
|
|
|
"descricao":"descricao do conteudo",
|
|
|
"linkImg":"ffffffff",
|
|
|
"ageGroup":{
|
|
|
"id":2,
|
|
|
"grupo":"1 a 2"
|
|
|
},
|
|
|
"eixo":{
|
|
|
"name":"nome de algum eixo",
|
|
|
"id":2
|
|
|
}
|
|
|
}
|
|
|
```
|
|
|
|
|
|
#50: **PUT** `conteudo/atualizarConteudo`
|
|
|
|
|
|
## User Story #42: Histórias
|
|
|
#54: **GET** `historia/listarHistorias`
|
|
|
|
|
|
>>>
|
|
|
{"Historia": [{
|
|
|
"id": 3,
|
|
|
"titulo": "titulobom",
|
|
|
"descricao": "el bigodon",
|
|
|
"numero": 255222,
|
|
|
"linkImg": "linkimg"
|
|
|
}]}
|
|
|
>>>
|
|
|
```javascript
|
|
|
{
|
|
|
"Historia":[
|
|
|
{
|
|
|
"id":3,
|
|
|
"titulo":"titulobom",
|
|
|
"descricao":"el bigodon",
|
|
|
"numero":255222,
|
|
|
"linkImg":"linkimg"
|
|
|
}
|
|
|
]
|
|
|
}
|
|
|
```
|
|
|
|
|
|
#54: **POST** `historia/cadastrarHistoria`
|
|
|
|
|
|
#54: **DELETE** `historia/removerHistoria/{id}`
|
|
|
|
|
|
#54: **GET** `historia/buscarHistoria/{id}`
|
|
|
>>>
|
|
|
{
|
|
|
"id": 3,
|
|
|
"titulo": "titulobom",
|
|
|
"descricao": "el bigodon",
|
|
|
"numero": 255222,
|
|
|
"linkImg": "linkimg"
|
|
|
}
|
|
|
>>>
|
|
|
|
|
|
```javascript
|
|
|
{
|
|
|
"id":3,
|
|
|
"titulo":"titulobom",
|
|
|
"descricao":"el bigodon",
|
|
|
"numero":255222,
|
|
|
"linkImg":"linkimg"
|
|
|
}
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
#54: **PUT** `historia/atualizarHistoria` |
|
|
\ No newline at end of file |