Commit 623afa4e733a3c43545a3d937ad452ad39ce2a49
1 parent
123af742
Exists in
master
and in
1 other branch
Minor fix in support of callback
Showing
1 changed file
with
1 additions
and
0 deletions
Show diff stats
server.js
... | ... | @@ -98,6 +98,7 @@ app.post('/api', function(req, res){ |
98 | 98 | break; |
99 | 99 | |
100 | 100 | case 'video': |
101 | + console.log(req.body); | |
101 | 102 | /* Verifica se os paramêtros [posicao, tamanho, transparencia] possuem algum valor */ |
102 | 103 | if ((req.body.posicao !== '') && (req.body.tamanho !== '') && (req.body.transparencia !== '')) { |
103 | 104 | /* Verifica se os paramêtros [linguagem, posicao, tamanho, transparencia] possuem os seus únicos valores possíveis */ | ... | ... |