mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-27 12:03:38 +08:00
15 lines
388 B
Python
15 lines
388 B
Python
from __future__ import absolute_import
|
|
|
|
from ipsilon.providers.openidc.plugins.common import OpenidCExtensionBase
|
|
|
|
|
|
class OpenidCExtension(OpenidCExtensionBase):
|
|
name = 'modernpaste'
|
|
display_name = 'Modern Paste'
|
|
scopes = {
|
|
'https://paste.fedoraproject.org/' {
|
|
'display_name': 'authenticated modernpaste access',
|
|
'claims': [],
|
|
},
|
|
}
|