File tree Expand file tree Collapse file tree 2 files changed +3
-7
lines changed
social_django_mongoengine Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased] ( https://github.com/python-social-auth/social-app-django-mongoengine/commits/master )
9
9
10
+ ### Changed
11
+ - Removed usage of set/get current strategy methods
12
+
10
13
## [ 0.2.0] ( https://github.com/python-social-auth/social-app-django/releases/tag/0.2.0 ) - 2016-12-28
11
14
12
15
### Changed
Original file line number Diff line number Diff line change 1
1
from django .apps import AppConfig
2
2
3
- from social_core .utils import set_current_strategy_getter
4
3
from .utils import load_strategy
5
4
6
5
7
6
class PythonSocialAuthConfig (AppConfig ):
8
7
name = 'social'
9
8
label = 'social_auth'
10
9
verbose_name = 'Python Social Auth'
11
-
12
- def ready (self ):
13
- """Set strategy loader method to workaround current strategy getter
14
- needed on get_user() method on authentication backends when working
15
- with Django"""
16
- set_current_strategy_getter (load_strategy )
You can’t perform that action at this time.
0 commit comments