Jonathan
Jonathan
No option for the filter to work normally? These filters work perfectly fine in the django ORM.
If I understand correctly, this will be a problem specifically for people who are using DjangoModelPermissions with users who are supposed to have read-only permissions, but don't have view permissions...
> Is there a way to get this token from the model object No. Only a prefix and hash (and previously salt) are stored in the db. The whole point...
The digest is the primary key, so it should be indexed in virtually every DB, usually with a clustered index.
Something like this would work: ``` from django.db import migrations from knox import crypto from knox.settings import CONSTANTS def convert_tokens(apps, schema_editor): Token = apps.get_model("authtoken", "token") AuthToken = apps.get_model("knox", "authtoken") db_alias...
Is there anyone who knows what might be causing this? Increasing the worker count isn't helping much and it's causing me problems in production. I'm trying to go through the...
It looks like the design of using a guard to reincarnate workers after a crash is fundamentally flawed. If the worker that died was holding the lock on the shared...
``` # header 1 ## header 2 ```
``` ===== section 1 ===== # header 1 ## header 2 ===== section 2 ===== ``` This is also an interesting example. You get 3 edit buttons: one for header...
I'm not sure if this is related, but I've also noticed a rare bug when editing the entire page where a newline gets inserted before the last two characters, so...