Add new kerneltest OIDC scope

Signed-off-by: Patrick Uiterwijk <patrick@puiterwijk.org>
This commit is contained in:
Patrick Uiterwijk 2019-05-20 19:19:14 +02:00
parent c626bcba85
commit 6bc09673fc
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,14 @@
from __future__ import absolute_import
from ipsilon.providers.openidc.plugins.common import OpenidCExtensionBase
class OpenidCExtension(OpenidCExtensionBase):
name = 'kerneltest'
display_name = 'Fedora Kernel tests'
scopes = {
'https://github.com/jmflinuxtx/kerneltest-harness/oidc/upload_test_run': {
'display_name': 'Upload the results of a test run',
'claims': [],
},
}

View file

@ -9,3 +9,4 @@ oidc_scope_filenames:
- freshmaker
- src
- fpdc
- kerneltest