deux icon indicating copy to clipboard operation
deux copied to clipboard

Multifactor Authentication for Django Rest Framework

Results 21 deux issues
Sort by recently updated
recently updated
newest added

Is this project still maintained? Looks like the last commit was a while ago

When using this library with Django 2 like: ```py from django.urls import include, path urlpatterns = [ # ... path('mfa/', include("deux.urls", namespace="mfa")), ] ``` Fails with: ```txt Specifying a namespace...

- updated the default settings to reflect the documentation and the most recent version - updated calls to twilio API in authtoken to work with twilio recent versions - added...

The Twilio exception class was moved in the latest version of their Python package. https://github.com/twilio/twilio-python/blob/2d87f002d78d5c177eed8e0b8a8226fe2a5c2e1a/README.md#handling-exceptions > ```from twilio.base.exceptions import TwilioRestException``` Without it you get an import error: ``` File "/home/nick/.local/share/virtualenvs/app-4PlAip0Q/lib/python3.6/site-packages/deux/notifications.py",...

Twilio package >6.x has changed the locations for TwilioRestClient & TwilioRestException. This pull request wraps the new import paths in a "try", which falls back to the old import paths...

I am building a Django backend and would love to incorporate this module. After I added it to my settings, I tried running the migration and got a syntax error:...

Support for the app_name argument is deprecated in Django 2.0. Switching to `include((pattern_list, app_namespace), namespace=None)` format as described in docs: https://docs.djangoproject.com/en/1.11/ref/urls/#include

Please, fix problem with pip install Last version for Django 2.0 have incorrect installing

```AssertionError: ("Creating a ModelSerializer without either the 'fields' attribute or the 'exclude' attribute has been deprecated since 3.3.0, and is now disallowed. Add an explicit fields = 'all' to the...