django-hashid-field icon indicating copy to clipboard operation
django-hashid-field copied to clipboard

Django Model Field that uses Hashids to obscure the value

Results 11 django-hashid-field issues
Sort by recently updated
recently updated
newest added

Created Django path converter using [official documentation](https://docs.djangoproject.com/en/3.0/topics/http/urls/#registering-custom-path-converters). I use it instead of `slug`, because last one allows extra symbols which breaks desired logic. Probably it can be useful for somebody...

enhancement

I hit the same issue as in #55 with [`django-cacheops`](https://github.com/Suor/django-cacheops) and `django-hashid-field`. Unfortunately for me, that `enable_hashid_object=False` "workaround" can't be applied in my case, but I've found that if you...

Hi, turns out my brand-new apps had the auto field set automatically, overriding the default from `settings.py`. This took me a few minutes to find. I added docs that might...

I had some views that stopped working on Django-admin, and realize Django-admin use an unquote function on URL. After some investigatigation, I found https://github.com/django/django/blob/f7389c4b07ceeb036436e065898e411b247bca78/django/contrib/admin/utils.py#L22-L23 Here the full quote_map: ``` QUOTE_MAP...

The old hashids package is replaced by sqids (https://sqids.org/python). Although this happened very recently I wanted to open this issue to discuss the path forward for the django-hashid-field package. What...

I'm having problems using the query with prefetch on a `GenericRelation` field. Follow the example: ```python class Action(models.Model): description = models.TextField() target_content_type = models.ForeignKey( "contenttypes.ContentType", on_delete=models.CASCADE, ) # target_object_id save...

Using a Django Hash ID Field with Django Ninja returns the original int rather than the Hash ID of the field. `[ { "id": 109908, "product": "Test Product" } ]`...

This name allows for the in lookup to behave normally in things like django-filter FilterSet logic. Without this value, the in lookup will appear as if it were an exact...

The default In lookup prep performs logic to make it such that developers do not have to explicitly call `values('id')` or `values('pk')` when writing subqueries on the ID value. This...

This is an issue that has come up in the context of temporarily saving a form to the backend in JSON format. Any ids using HashSerializerCharField for the write request...