Update Permission Change Management.md

This commit is contained in:
Dennis Eichhorn 2022-07-25 17:56:00 +02:00 committed by GitHub
parent 5a93e5b1aa
commit 8b19680d9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,9 +1,14 @@
# Permission Change Management
Permission changes are sometimes necessary if a role of an employee changes or if the employee has to take over additional tasks. Such permission requests must get approved by the respective HOD and verified by the IT department. If the change request is justified the IT department changes the permissions for the employee.
## Flowchart
```mermaid
graph TD;
REQUEST([Request from employee])-->APPROVAL_HOD[Approval by HOD];
APPROVAL_HOD-->IT_CHECKS{IT: Other approvals necessary?};
REQUEST_HOD([Request from HOD])--->IT_CHECKS{IT: Other approvals necessary?};
REQUEST_STAFF([Request from employee])-->APPROVAL_HOD[Approval by HOD];
APPROVAL_HOD-->IT_CHECKS;
IT_CHECKS--Yes-->FORWARD[IT: Forward request];
FORWARD-->APPROVAL_RESPONSIBLE[Approval by responsible person];
APPROVAL_RESPONSIBLE-->VALIDATE{IT: Is approved?};
@ -13,7 +18,5 @@ graph TD;
IMPLEMENT-->INFORM;
```
2022-01-01 - Version 1.0