Skip to content

Commit 90e2d48

Browse files
authored
Allauth: Include Bitbucket in the list of social accounts (#11160)
It's deprecated, but we still have like 1050 tokens/users, we need to decide what to do with them later.
1 parent dd908ef commit 90e2d48

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

readthedocs/settings/base.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -685,6 +685,16 @@ def DOCKER_LIMITS(self):
685685
],
686686
# Bitbucket scope/permissions are determined by the Oauth consumer setup on bitbucket.org.
687687
},
688+
# Deprecated, we use `bitbucket_oauth2` for all new connections.
689+
"bitbucket": {
690+
"APPS": [
691+
{
692+
"client_id": "123",
693+
"secret": "456",
694+
"key": ""
695+
},
696+
],
697+
},
688698
}
689699
ACCOUNT_FORMS = {
690700
'signup': 'readthedocs.forms.SignupFormWithNewsletter',

0 commit comments

Comments
 (0)