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

byceps.permissions.orga   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 10
dl 0
loc 24
ccs 3
cts 3
cp 1
rs 10
c 0
b 0
f 0
wmc 0
1
"""
2
byceps.permissions.orga
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
OrgaBirthdayPermission = create_permission_enum(
13
    'orga_birthday',
14
    [
15
        'view',
16
    ],
17
)
18
19
20 1
OrgaDetailPermission = create_permission_enum(
21
    'orga_detail',
22
    [
23
        'view',
24
    ],
25
)
26