Jafar Abdulrasoul

Results 7 comments of Jafar Abdulrasoul

I'm curious as to which endpoint you were planning to use for v2 API?

a one liner alternative that worked for me was ```js const parsedCookies = cookie.parse(req.headers.cookie ?? ""); return parsedCookies[key]; ``` or the full the plugin ```js // plugins/persistedState.js import createPersistedState from...

I'm facing the same issue too, `data` in this context seem to be a `InMemoryUploadedFile` type object (or `TemporaryUploadedFile` if it was more than 2.5MB). neither of which has the...

I couldn't share the project that I was working on, but I created a minimal project that shows this issue and deployed it on heroku. https://oscar-api-test.herokuapp.com/mapi/store-image/ if you go to...

@specialunderwear I'm not even trying to use oscar api yet. I currently have an API endpoint that works fine to upload images, just adding oscar api to the project breaks...

> > @specialunderwear I'm not even trying to use oscar api yet. > > I currently have an API endpoint that works fine to upload images, just adding oscar api...

> @Jimmar We committed a [fix](https://github.com/django-oscar/django-oscar-api/pull/290/files) to the main branch. Could you install the package from github in your local environment: > > ```shell > pip install git+https://github.com/django-oscar/django-oscar-api.git > ```...