Skip to content

Commit

Permalink
Added task permissions and missing permission for creating test appli…
Browse files Browse the repository at this point in the history
…cations (#2642)
  • Loading branch information
drieJAC authored Dec 17, 2024
1 parent cd875e6 commit 4af05b2
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/permissions.js
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,10 @@ const PERMISSIONS = {
label: 'Can approve late applications',
value: 'a6',
},
canCreateTestApplications: {
label: 'Can create test applications',
value: 'a7',
},
},
},
applicationRecords: {
Expand Down Expand Up @@ -388,6 +392,23 @@ const PERMISSIONS = {
},
},
},
tasks: {
label: 'Tasks',
permissions: {
canCreate: {
label: 'Can create tasks',
value: 't1',
},
canUpdate: {
label: 'Can update tasks',
value: 't2',
},
canEditScoreCalculation: {
label: 'Can edit score calculation',
value: 't3',
},
},
},
};

export default PERMISSIONS;

0 comments on commit 4af05b2

Please sign in to comment.