43 lines
1 KiB
YAML
43 lines
1 KiB
YAML
|
|
#
|
||
|
|
# Default groups defined for the system
|
||
|
|
#
|
||
|
|
# Fields:
|
||
|
|
# id - Primary id for the group
|
||
|
|
# role_id - (int) default role for the group
|
||
|
|
# flags - (bit mask) group flags
|
||
|
|
# name - (string) descriptive name for the group
|
||
|
|
# notes - (string) administrative notes (viewable internally only)
|
||
|
|
# depts: (list<Department<id>>) id's of the departments to which the group
|
||
|
|
# should initially have access
|
||
|
|
#
|
||
|
|
# NOTE: ------------------------------------
|
||
|
|
# The very first group listed in this document will be the primary group of
|
||
|
|
# the initial staff member -- the administrator.
|
||
|
|
---
|
||
|
|
- id: 1
|
||
|
|
role_id: 1
|
||
|
|
flags: 1
|
||
|
|
name: Administrator
|
||
|
|
notes: |
|
||
|
|
System-Administratoren. Diese Leute haben (zunächst) die volle Kontrolle
|
||
|
|
über alle Abteilungen, zu denen sie Zugang haben.
|
||
|
|
|
||
|
|
depts: [1, 2, 3]
|
||
|
|
|
||
|
|
- id: 2
|
||
|
|
role_id: 2
|
||
|
|
flags: 1
|
||
|
|
name: Abteilungsleiter
|
||
|
|
notes: |
|
||
|
|
leitende Mitarbeiter des Unternehmens
|
||
|
|
|
||
|
|
depts: [1, 2, 3]
|
||
|
|
|
||
|
|
- id: 3
|
||
|
|
role_id: 2
|
||
|
|
flags: 1
|
||
|
|
name: Mitarbeiter
|
||
|
|
notes: |
|
||
|
|
normale Mitarbeiter
|
||
|
|
|
||
|
|
depts: [1, 2, 3]
|