File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
social_django_mongoengine Expand file tree Collapse file tree 2 files changed +10
-0
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
+ ### Added
11
+ - Added partial pipeline db storage solution
12
+
10
13
### Changed
11
14
- Removed usage of set/get current strategy methods
12
15
Original file line number Diff line number Diff line change 12
12
MongoengineAssociationMixin , \
13
13
MongoengineNonceMixin , \
14
14
MongoengineCodeMixin , \
15
+ MongoenginePartialMixin , \
15
16
BaseMongoengineStorage
16
17
17
18
@@ -63,11 +64,17 @@ class Code(Document, MongoengineCodeMixin):
63
64
pass
64
65
65
66
67
+ class Partial (Document , MongoenginePartialMixin ):
68
+ """Partial pipeline data"""
69
+ pass
70
+
71
+
66
72
class DjangoStorage (BaseMongoengineStorage ):
67
73
user = UserSocialAuth
68
74
nonce = Nonce
69
75
association = Association
70
76
code = Code
77
+ partial = Partial
71
78
72
79
@classmethod
73
80
def is_integrity_error (cls , exception ):
You can’t perform that action at this time.
0 commit comments