-
const isAuthenticatedUser = async (req, res, next) => {
const session = await getSession({req} );
if (!session) {
return next(new Error("Login first to access this route", 401));
}
…
-
**Describe the bug**
Trying to search logs with certain illegal characters causes a Search Error. This means that logs submitted by malicious actors or exploit hunters may cause a kind of Denial of…
-
**Is your feature request related to a problem? Please describe.**
Would love access to opportunity to use pylon in a way that still allows me native control of the underlying http server.
```ts
co…
-
Hi,
Thank you very much for the project!
I am trying to set the env to run eval, test and training if possible, after setting the environment, I got errors when running the test. Anywhere or doc t…
-
Hey all :)
The new openapi-fetch based client is pretty hard and confusing to use, could you add some basic documentation? 🙏
Additionally, I'm having a really hard time getting types to work correc…
-
Sometimes it could be useful to know what debuginfod server returned success (e.g. to store long-term in case we need to re-download it later on, or for debugging purposes). Would this be something yo…
-
I have a function in a plug that calls fetch like this, where body is a string (json-encoded object):
``` javascript
const response = await fetch(
aiSettings.openAIBaseUrl + "/chat/comp…
-
In our project we have a use case for file upload using multipart-form data, and this simply will not work using the aurelia Fetch client. I won't go into a detailed explanation, but Fetch will not w…
-
### Description
Using a request body of type content: multipart/form-data breaks the headers generated by hey-api for solid query.
Compared to other methods that do not use form data, the libra…
-
Paddlecloud command-line tools should return the version information, such as:
```bash
paddlecloud version
server version: xxx
clietn version: xxx
```
I think the version could be the release …