Tilmann Becker
Tilmann Becker
I managed to get it working with the [Vue Migration Build](https://v3.vuejs.org/guide/migration/migration-build.html). ```js import CroppaPlugin from 'vue-croppa' const Croppa = CroppaPlugin.component Croppa.compatConfig = { MODE: 2 } ``` The remaining app...
This seems to be fixed in #818 already, but unpublished yet. Could someone publish a new version?
Another way, based on [`AuthMiddleware`](https://github.com/django/channels/blob/fa1783c9746dfd527b1abfd0c1e83fb1c0206be4/channels/auth.py#L149): ```py from channels.db import database_sync_to_async from channels.middleware import BaseMiddleware @database_sync_to_async def get_user(user_id): try: return User.objects.get(id=user_id) except User.DoesNotExist: return AnonymousUser() class QueryAuthMiddleware(BaseMiddleware): def populate_scope(self, scope): if...
I'll have a look at fixing the tests, then I could look into making existing notifications role-aware.
Yeah, notification were alright! I just saw the unticked checkbox in the PR description, so I thought this might be a nice small task :)
Next, I'll add the bit to actually assign the role when there's at least one trust. And to remove it again when trust is revoked and there's less than one...
I wondered if it could make sense to have those notifications somehow user-defined; after all, I have no idea what the role is actually good for. From my perspective, it's...
I mean, I wouldn't implement any API method to change the text yet, but still have it in the database so we can adapt to the Luxembourg group needs without...
I just found this library, could that be helpful? https://jkbrzt.github.io/rrule/
Since I now treat 'archived' as yet another status, maybe it's too _easy_ to see archived stores? But I would leave it and see if users tell us...