Hemache Adil

Results 5 issues of Hemache Adil

fixes https://github.com/openwisp/django-rest-framework-gis/issues/247

bug

Hello, `GeoFeatureModelSerializer` fails to get bounding box when `geo_field` points to a `SerializerMethodField` ``` AttributeError: object has no attribute 'extent' ``` Example: ```python class PlaceSerializer(GeoFeatureModelSerializer): location = GeometrySerializerMethodField() class Meta:...

related to https://github.com/graphql-nexus/nexus/issues/959 usage example: ```typescript import { applyMiddleware } from 'graphql-middleware' import { yupMiddleware as YupMiddleware } from 'graphql-yup-middleware' ... const yupMiddleware = YupMiddleware() export const middlewarePlugin = ():...

Hello guys, I've following custom error class ```typescript class TypedError extends Error { constructor(message: string, public code: number) { super(message) // Set the prototype explicitly. Object.setPrototypeOf(this, TypedError.prototype) } } ```...

trying to request a non-https url will result following error ``` Mixed Content: The page at 'https://resttesttest.com/' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http://example.com/test'. This request...