Posts by Bob Nunes • 35 points
4 posts
-
0
votes1
answer94
viewsQ: Access denied when I put two roles on routes using Adonis Acl
Hello, I’m trying to get the administrator and the patient to access some of the routes in my system. But the structure only works when I put only one roll in 'is:(administrador || paciente)' at the…
-
0
votes1
answer22
viewsA: Error connecting to database via Seriate Node JS
In the documentation config structure is like this: { "name": "default", "host": "127.0.0.1", "port": "12345", // find the port of your instance in the SQL Server Configuration Manager "user":…
-
3
votes2
answers463
viewsA: Cannot find module 'body-parser'
You put the wrong lib name. Is not const bodyparser = require('body-parse'). Forgot an "r". The right thing is const bodyparser = require('body-parser')…
-
-2
votes1
answer201
viewsQ: How do I count records after a specific date in Sequelize?
I am creating an API in Nodejs using Sequelize to facilitate the manipulation of data from a Mysql database. I have a list of appointments and I need to count how many appointments a patient has…