mirror of
https://github.com/nikdoof/test-auth.git
synced 2026-01-31 00:18:14 +00:00
Stop apps from changing status that shouldnt be allowed
This commit is contained in:
@@ -187,6 +187,7 @@ def update_application(request, applicationid, status):
|
|||||||
|
|
||||||
app = get_object_or_404(Application, id=applicationid)
|
app = get_object_or_404(Application, id=applicationid)
|
||||||
|
|
||||||
|
if not app.status in [APPLICATION_STATUS_REJECTED, APPLICATION_STATUS_COMPLETED]:
|
||||||
perm = check_permissions(request.user, app)
|
perm = check_permissions(request.user, app)
|
||||||
if perm == HR_ADMIN or (perm == HR_VIEWONLY and int(status) <= 1):
|
if perm == HR_ADMIN or (perm == HR_VIEWONLY and int(status) <= 1):
|
||||||
if not app.status == status:
|
if not app.status == status:
|
||||||
|
|||||||
Reference in New Issue
Block a user