Adrian

Results 615 comments of Adrian

One place that's still missing is in the meeting timetable. If you search for `{{ render_users(` you'll find all relevant places (plus some more, ignore those with `title=false` but probably...

An example on how to nicely pass a raw token to the library, without any "magic" that keeps it alive internally (usually msal handles renewal when you ask it to...

This seems to work (copied together from multiple files but within my app it works fine): ```python import sys from pathlib import Path from flask import current_app from msal import...

yeah, i reinstalled exchangelib to make sure i didn't have any leftover manual changes from previous attempts... I think it works because `oauth2_session_params=self.credentials.session_params()` includes the param to set the token...

Sure! FWIW, I think it would be pretty nice to have something like this for simple usecases where you have the token (regardless of whether it comes from msal or...

Ok, using `DBRef` for Test.structure.other helped. And with this property it even works like with autorefs: ``` @property def other(self): real_other = self.__getattr__('other') if real_other is None: return None return...

This is the final version of my code to work around the issue and still having most of the comfort autorefs provide.(besides having to call `.get_dbref()` which could probably be...

Ping :) > I was trying to see what specific need prompted this Issue, but the link doesn't work for me. I'd say the "specific need" is simply being a...

Besides there not being an option to get a list of users who use the plugin / have invalid tokens, I don't think that scales well (I'd have to `@all`...

This would be really useful to have. Right now I have no choice but disabling `N805` because honestly, adding noqa for almost 50 sqlalchemy hybrid property expression functions would be...