File tree Expand file tree Collapse file tree 2 files changed +23
-1
lines changed
junction/tickets/migrations Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change
1
+ # -*- coding: utf-8 -*-
2
+ from __future__ import unicode_literals
3
+
4
+ from django .db import migrations , models
5
+
6
+
7
+ class Migration (migrations .Migration ):
8
+
9
+ dependencies = [
10
+ ('tickets' , '0001_initial' ),
11
+ ]
12
+
13
+ operations = [
14
+ migrations .AlterField (
15
+ model_name = 'ticket' ,
16
+ name = 'email' ,
17
+ field = models .EmailField (max_length = 254 ),
18
+ )
19
+ ]
Original file line number Diff line number Diff line change 65
65
'allauth.socialaccount' ,
66
66
'allauth.socialaccount.providers.google' ,
67
67
'allauth.socialaccount.providers.github' ,
68
+ 'allauth.socialaccount.providers.twitter' ,
69
+ 'allauth.socialaccount.providers.linkedin' ,
70
+ 'allauth.socialaccount.providers.facebook' ,
68
71
69
72
'bootstrap3' ,
70
73
101
104
# Needed to login by username in Django admin, regardless of `allauth`
102
105
"django.contrib.auth.backends.ModelBackend" ,
103
106
# `allauth` specific authentication methods, such as login by e-mail
104
- "allauth.account.auth_backends.AuthenticationBackend"
107
+ "allauth.account.auth_backends.AuthenticationBackend" ,
105
108
)
106
109
107
110
ACCOUNT_AUTHENTICATION_METHOD = "username_email"
You can’t perform that action at this time.
0 commit comments