Pierre GM
Pierre GM
I have the following (simplified) `django` and `django-polymorphic` models: ``` class GenericOffer(PolymorphicModel): pass class OfferA(GenericOffer): special = models.IntegerField() class OfferB(GenericOffer): pass class GenericProduct(PolymorphicModel): offer = models.ForeignKey(to=GenericOffer) class ProductA(GenericProduct): pass class...
The current method name makes little sense in english. It'd be nicer to call it `get_well_known`. Moreover, as the `well_known` endpoint is used several times in the code, why not...
I just spent a couple of hours wondering why my `KeycloakOpenID` failed to retrieve the `.well_known` endpoints. It turned out I had forgotten to end the `server_name` (eg, `http://mykeycloak.com/auth`) by...
The preview mode fails on `next-corporate`. The issue comes from ` packages/starters/next-corporate/starter/pages/api/preview.js` L15, where the `locale` variable isn't defined.
Hello, I have a rather complex SQLAlchemy schema, where some models inherit from others through the joined table inheritance scheme and where some tables have relationships to some inherited class...