Skip to content

Commit

Permalink
Allauth: Include Bitbucket in the list of social accounts (#11160)
Browse files Browse the repository at this point in the history
It's deprecated, but we still have like 1050 tokens/users,
we need to decide what to do with them later.
  • Loading branch information
stsewd committed Feb 27, 2024
1 parent dd908ef commit 90e2d48
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions readthedocs/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -685,6 +685,16 @@ def DOCKER_LIMITS(self):
],
# Bitbucket scope/permissions are determined by the Oauth consumer setup on bitbucket.org.
},
# Deprecated, we use `bitbucket_oauth2` for all new connections.
"bitbucket": {
"APPS": [
{
"client_id": "123",
"secret": "456",
"key": ""
},
],
},
}
ACCOUNT_FORMS = {
'signup': 'readthedocs.forms.SignupFormWithNewsletter',
Expand Down

0 comments on commit 90e2d48

Please sign in to comment.