Skip to content

Commit

Permalink
allow saving qualifications and post qualification experience (#1204)
Browse files Browse the repository at this point in the history
* allow saving qualifications and post qualification experience

* rename
  • Loading branch information
KoWeiJAC authored Sep 27, 2024
1 parent a4023e2 commit 3f8b031
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/firestore.rules
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ service cloud.firestore {

match /documents/{documentId} {
allow get, create, update: if request.auth.uid == candidateId &&
documentId in ['personalDetails', 'characterInformation', 'equalityAndDiversitySurvey'];
documentId in ['personalDetails', 'characterInformation', 'equalityAndDiversitySurvey', 'relevantQualifications', 'postQualificationExperience'];
allow read: if userIsAuthenticated() && userIsJAC() && hasPermission('c1');
allow create: if userIsAuthenticated() && userIsJAC() && hasPermission('c2');
allow update: if userIsAuthenticated() && userIsJAC() && hasPermission('c3');
Expand Down

0 comments on commit 3f8b031

Please sign in to comment.