KrYpTeD

Results 10 comments of KrYpTeD

After debugging with Burp Suite, I think I identified the problem and found a solution. No patch should be needed. **What's the quick solution ?** Add the attribute `crossorigin="anonymous"` in...

@DanielePalombo Could you elaborate more ? I'm pretty sure this issue can be solved with the crossorigin="anonymous" tag. But maybe there are some subtleties to adapt in your code.

I've just noticed that DjangoRestFramework uses a class empty to handle cases like this. It might be a lead to solve this issue. ``` class empty: """ This class is...

As a Fix I, updated the `FlexFieldsFilterBackend` to include some new conditions so that the field is "routed" into the prefetch_related fields. To differenciate the `GenericForeignKey` from a `ForeignKey`, I...

@rsinger86 Do you have any feedback on this issue and PR ?

As it is said in the Common issues of the README, try to add to your manifest: ``

This workaround works really well, I've tested it on a big project. This is the base class of every tenant related models we have. ``` class TenantAwareModel(TenantModel): tenant = models.ForeignKey(Tenant,...

Huum Ok actually this does not completely work. I have some weird cases where there's a MaximumRecursionError that is triggered when `tenant_value` gets called. This is what the program does:...