Geoff
Geoff
Confirmed I do not have `journal.base` defined in either the User or Workspace settings on my dev or remote machine. When I try and create a new entry for Today,...
I know this is old, but looks like [cryptodome is no longer on the blacklist](https://bandit.readthedocs.io/en/latest/blacklists/blacklist_imports.html#b414-import-pycryptodome): ``` django-oidc-provider$ bandit -r oidc_provider/ -x oidc_provider/tests/ [main] INFO profile include tests: None [main] INFO...
If you're still interested in this, I have a working version [here](https://github.com/geoff-va/django-oidc-provider/tree/test_jwt_auth). I haven't created a PR since I don't have any tests yet and I'm sure it could use...
@cbouvier15 that sounds great, thanks! Let me know if you've got any questions!
I've seen a similar issue and I tracked it down to how keys are loaded. https://github.com/juanifioren/django-oidc-provider/blob/master/oidc_provider/lib/utils/token.py#L159 If you trace this back into the `importKey` function, it's actually running all the...
https://github.com/juanifioren/django-oidc-provider/blob/master/oidc_provider/views.py#L260-L292 Doesn't look like there are currently any mechanisms to support this. It's not part of the current built in response, so would need to be added. [Relevant spec](https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata) Note...
You bet - does sound like it would be a useful feature to have. Might be worth re-opening this issue or create a new request as an enhancement if you're...
yup! You may want to rename it so it's more indicative of the request - something like: `Add claims_supported to open-id configuration` or whatever you see fit, and then reference...
It appears the only things causing the incompatibility are the `LoginView` and `LogoutView` classes that were new in Django 1.11. * I copied those classes from django 1.11 and added...
Current WIP branch [here](https://github.com/geoff-va/django-oidc-provider/tree/django-1.8-compat).