John Spounias

Results 35 comments of John Spounias

Need to be able to set bearer, in particular in [DRF](https://www.django-rest-framework.org/api-guide/authentication/#tokenauthentication) the default token auth looks like this, ``` Authorization: Token 2a17b0081fce64aac719a32132f4f7cd4a5104f1 ``` note the word 'Token' this is missing/non...

P.S. I don't mind attempting to re-write it myself, I am mostly asking about context/intent. If it is possible to rewrite in a database agnostic way would this be alright?

Been thinking about this today. I think a good solution might be to write it using an if statement for django.db.connection.vendor. If its Mysql we can use the queries in...

Sounds good, I will work on this in the next few days and should have something soon. P.S. I have been integrating this module pretty well and I like it...

I spent some more time digging into this and I made the following discoveries, 1. The [jsonfield module](https://pypi.org/project/jsonfield/) has its intent documented about these kinds of lookups vs the native...

I did a simple grep and there are other places shas is in place, I know its your module and the code looks good, but being locked to MySQL alone...

I basically see 2 options, go with the current jsonfield module and use its design methodology (DB agnostic/simple string lookups using regex) or go with the native ones and go...

I thought about that too, loading the entire json string into memory might be a hit, having the DB do it is likely better. With some example code it could...

I will get to this in the next day or so, thanks for waiting.

OK, https://github.com/mkalioby/django-mfa2/pull/15