We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I used this url http://localhost:8090/api/threads . it shows {"participants":[],"messages":[],"threads":[]}
again I tried http://localhost:8090/api/threads/1 then it shows Cannot GET /api/threads/1
when after clone the project and try to npm run api-server it shows compile time errors
Argument of type 'string | string[]' is not assignable to parameter of type 'string'.
errors are in all the .ts files in server/api
every participantId places it shows errors. I fixed them by using const participantId = parseInt(req.headers['userid'] as string); to all the places
but data not retrieving when call to api/threads or api/threads/1 please help me.
The text was updated successfully, but these errors were encountered:
@jhades , are you there???
Sorry, something went wrong.
No branches or pull requests
I used this url http://localhost:8090/api/threads .
it shows {"participants":[],"messages":[],"threads":[]}
again I tried http://localhost:8090/api/threads/1
then it shows Cannot GET /api/threads/1
when after clone the project and try to npm run api-server it shows compile time errors
Argument of type 'string | string[]' is not assignable to parameter of type 'string'.
errors are in all the .ts files in server/api
every participantId places it shows errors. I fixed them by using
const participantId = parseInt(req.headers['userid'] as string); to all the places
but data not retrieving when call to api/threads or api/threads/1
please help me.
The text was updated successfully, but these errors were encountered: