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

byceps.permissions.ticketing   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.ticketing
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
TicketingPermission = create_permission_enum(
13
    'ticketing',
14
    [
15
        'administrate',
16
        'administrate_seat_occupancy',
17
        'checkin',
18
        'view',
19
    ],
20
)
21