django-dynamic-preferences
django-dynamic-preferences copied to clipboard
Dynamic global and instance settings for your django project
In addition to the REST API support, support for GraphQL would be good. 1. Define queries and mutations for the [GraphQL schema](https://docs.graphene-python.org/projects/django/en/latest/schema/) in `api/schema.py` 2. [Re-use the REST API serializers](https://graphene-django-murali.readthedocs.io/en/latest/rest-framework.html)...
Hi, first of all congratulations for the excellent extension! I'm using the global_preference for different configurations inside my app, using the admin interface to allow users to update the configurations....
Hi, I have used dynamic_preferences in the Django channel with the Daphne server for the chatting function. It works as expected in DRF, but not update affected in the web...
Recently I met a problem with setting a `FloatPrefeerence` to an int value instead of its float equivalent (`1` instead of `1.0`), which sounds reasonable, but I got this error:...
There is no way of configuring which cache should be used when caching preferences. The 'default' cache is always used. It would be nice if it were possible to configure...
Hi, Thank you for amazing work and also for merging [my latest PR](https://github.com/agateblue/django-dynamic-preferences/pull/253)! I have a few questions regarding tests and flake8: - What's the current process for running tests?...
NotFoundInRegistry No such preference in GlobalPreferenceRegistry with section=None and name=addresslist_settings_url /home/sebastian/.local/lib/python3.8/site-packages/dynamic_preferences/registries.py, line 174, in get /usr/bin/python3 3.8.5 ['/home/sebastian/PycharmProjects/verwaltung', '/usr/lib/python38.zip', '/usr/lib/python3.8', '/usr/lib/python3.8/lib-dynload', '/home/sebastian/.local/lib/python3.8/site-packages', '/usr/local/lib/python3.8/dist-packages', '/usr/lib/python3/dist-packages', '/usr/lib/python3.8/dist-packages'] Sun, 21 Mar 2021 11:23:03...
## Summary `Section`'s `verbose_name` is missing in JSON serialized object. I would like to use this value to display human-friendly content. ### Details Currently exposed data for a preference field...
Hi, I am using this module in admin and want override function which call save_model on all attributes. It should be save_formset but it doesn't work. What is right approach...
Hello, I'm trying to call a FilePathField model into the FilePreference (I also tried BasePreference) class without success, here is my code in the dynamic_preferences_registry.py: ``` from django.db.models import FilePathField...