-
Couldn't load subscription status.
- Fork 7
Adding idManagement features + several corrections in the code #147
New issue
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
base: full-id-service
Are you sure you want to change the base?
Conversation
| ) | ||
| } else { | ||
| clientServer.authenticate(req, res, (data, id) => { | ||
| // TODO : Handle error 403 where the user isn't allowed to see this user's presence status, may have to do with the "users_to_send_full_presence_to" table in the matrixDb |
Check notice
Code scanning / devskim
A "TODO" or similar was left in source code, possibly indicating incomplete functionality
| }) | ||
| validateParameters(res, schema, obj, clientServer.logger, (obj) => { | ||
| const filter: Filter = new Filter(obj) | ||
| // TODO : verify if the user is allowed to make requests for this user id |
Check notice
Code scanning / devskim
A "TODO" or similar was left in source code, possibly indicating incomplete functionality
| .insert('user_filters', { | ||
| user_id: userId, | ||
| filter_id: filterId, | ||
| filter_json: JSON.stringify(filter) // TODO : clarify the type of the filter_json (bytea, string ???) |
Check notice
Code scanning / devskim
A "TODO" or similar was left in source code, possibly indicating incomplete functionality
| ) as Record<string, string> | ||
| } else { | ||
| // We construct a URL object to extract the query parameters with .searchParams | ||
| const url = new URL(req.url ?? '', 'http://default-host') // No need to provide a correct host since we simply extract the query parameters |
Check warning
Code scanning / devskim
An HTTP-based URL without TLS was detected.
|
I just relaunch test. Let's wait for result |
No description provided.