stormpath-django
stormpath-django copied to clipboard
Django plugin for Stormpath
Due to this line https://github.com/stormpath/stormpath-django/blob/master/django_stormpath/models.py#L401, username is over-ridden by email.
The `get_default_is_active` function is invoked at multiple points during user model instantiation, due to its use in field definitions and synchronization with Stormpath accounts. In its access of the underlying...
Have permission management features ever been considered for inclusion in this library?
Fixes #83 cc @javierbq
It seems that in urls.py when `if django.VERSION[:2] < (1, 8): from django.conf.urls import patterns urlpatterns = patterns('django_stormpath.views', *urlpatterns)` was added, there should have been added also `import django` at...
I think that this line is broken; https://github.com/stormpath/stormpath-django/commit/37ff75b8fa241194d831c080bbd9fc956d362d4c#diff-46ecae53ba9f8c81d6e2cd0c74251579R115 In my local env (Python 3.5.2, django-stormpath 1.1.0), the first variable in this list created by `key.split(self.DJANGO_PREFIX)` is an empty string. Here's...
It would be really nice if the module supported authentication via OAuth 2.0 access tokens using at least one of the [supported methods](https://tools.ietf.org/html/rfc6750#section-2).
Projects that use the app can have their own user model. They may don't want include fields you include in your model (like username, surname and given_name).
We should have a way to, given a Django User object, retrieve the corresponding Stormpath Account object. This way, we can do more advanced Stormpath things if we need to.
When creating a new StormpathUser in the admin's create view, if the password doesn't meet some requirement (try a too-short password like 'foo'), a 500 is raised, instead of a...