Mathieu Drapeau

Results 8 issues of Mathieu Drapeau

Currently the `$HOME` location is `/headless`. How could we easily change it to something else? Would it be possible to paramatrize it when running the container ie: `-e HOME=/home/my_user`?

Is there a way to associate different social user even if the authenticated user is using a different email? The goal is to offer users a way to associate multiple...

In order to reduce the amount of data being transferred from a resource, is it possible to provide a query args to return a set of fields? Sometimes, we don't...

How can we define a custom attribute for instances? Using this route as example: ``` @ItemRoute.GET def is_recent(self, book) -> fields.Boolean(): return datetime.date.today().year

How can I filter using OR on multiple attributes?

In order to use soft-deletes, I tried to used the recipe (https://potion.readthedocs.io/en/latest/recipes.html#archivingresource) but filtering resources are not working anymore. ``` from flask_potion import ModelResource, fields from flask_potion.contrib.alchemy import SQLAlchemyManager from...

``` from dulwich.porcelain import pull repo = clone('', 'out', depth=1) ... commit changes to your repo pull(repo, force=True) ``` As reported here but for pushes: https://github.com/dulwich/dulwich/pull/757 Pulls on shallow clones...

bug

Wondering if it could be possible to register a potion ModelResource with sphinxcontrib.httpdomain? Unless I overload all possible routes and register that in the endpoints directive, is there another way?