Daniel
Daniel
I wanted to use this as a workaround for issue #12 with ``` "aoColumns": [ null, { "bSearchable": false }, null, ... ] ``` and noticed that the bSearchable option...
Patch replaces ``` def url_path_for(self, name: str, **path_params: str) -> URLPath: ``` with ``` def url_path_for(self, *args: str, **kwargs: str) -> URLPath: assert len(args) == 1, "Exactly one positional argument...
I'm implementing an API in Fastapi, using `APIRouter`s for different resources. When I want to get the URL of an item in a resource, I use the `starlette.requests.Request` objects `url_for()`...
Fix for #519: * When `RedisModel.Meta.database` has not been set, the meta class won't set it. No DB connection is configured or opened. * When `MyRedisModel.db()` is called, the old...
Often the software I write does not know the configuration at import time. It has to load it from multiple sources, as it is executed in different environments and with...