mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-26 11:36:10 +08:00
15 lines
370 B
Python
15 lines
370 B
Python
from __future__ import absolute_import
|
|
|
|
from ipsilon.providers.openidc.plugins.common import OpenidCExtensionBase
|
|
|
|
|
|
class OpenidCExtension(OpenidCExtensionBase):
|
|
name = 'src'
|
|
display_name = 'Dist-Git'
|
|
scopes = {
|
|
'https://src.fedoraproject.org/push': {
|
|
'display_name': 'Push to Fedora Dist-Git',
|
|
'claims': [],
|
|
},
|
|
}
|