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

byceps.permissions.party   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 8
dl 0
loc 18
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
wmc 0
1
"""
2
byceps.permissions.party
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
PartyPermission = create_permission_enum(
13
    'party',
14
    [
15
        'create',
16
        'update',
17
        'view',
18
    ],
19
)
20