Commit | Line | Data |
---|---|---|
86e4bb65 DB |
1 | # -*- encoding: utf-8 -*- |
2 | ||
3 | from project.groups import safe_create_groupe | |
4 | from project.groups import grp_correspondants_rh, \ | |
5 | grp_drh, \ | |
6 | grp_drh2, \ | |
7 | grp_directeurs_bureau, \ | |
8 | grp_administrateurs, \ | |
9 | grp_haute_direction | |
10 | ||
11 | EVALUATEURS = 'Évaluateurs' | |
12 | grp_evaluateurs = safe_create_groupe(name=EVALUATEURS) | |
13 | ||
14 | recrutement_groupes = ( | |
15 | grp_evaluateurs, | |
16 | grp_correspondants_rh, | |
17 | grp_drh, | |
18 | grp_drh2, | |
19 | grp_directeurs_bureau, | |
20 | grp_administrateurs, | |
21 | grp_haute_direction, | |
22 | ) |