Passed
Push — main ( 5593c7...37a38c )
by Jochen
04:43 queued 18s
created

byceps.permissions.orga_team   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 19
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 9
dl 0
loc 19
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
wmc 0
1
"""
2
byceps.permissions.orga_team
3
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4
5
:Copyright: 2006-2021 Jochen Kupperschmidt
6
:License: Revised BSD (see `LICENSE` file for details)
7
"""
8
9 1
from ..util.authorization import create_permission_enum
10
11
12 1
OrgaTeamPermission = create_permission_enum(
13
    'orga_team',
14
    [
15
        'administrate_memberships',
16
        'create',
17
        'delete',
18
        'view',
19
    ],
20
)
21