~ubuntu-branches/debian/sid/social-auth-core/sid

« back to all changes in this revision

Viewing changes to social_core/backends/launchpad.py

  • Committer: Package Import Robot
  • Author(s): Andre Bianchi
  • Date: 2018-02-22 19:49:12 UTC
  • Revision ID: package-import@ubuntu.com-20180222194912-4lqv8mlhnqc4ncd3
Tags: upstream-1.7.0
ImportĀ upstreamĀ versionĀ 1.7.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
"""
 
2
Launchpad OpenId backend
 
3
"""
 
4
 
 
5
from .open_id import OpenIdAuth
 
6
 
 
7
 
 
8
class LaunchpadOpenId(OpenIdAuth):
 
9
    name = 'launchpad'
 
10
    URL = 'https://login.launchpad.net'
 
11
    USERNAME_KEY = 'nickname'