employer verify application uid updated

This commit was merged in pull request #33.
This commit is contained in:
victorAnumudu
2024-06-13 21:08:33 +01:00
parent 148659b453
commit 9499422c9a
3 changed files with 5 additions and 6 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ const getApprovedUsers = (query: string): Promise<UsersQueryResponse> => { // FU
};
const employersVerify = (uid: ID): Promise<UsersQueryResponse> => { // FUNCTION FOR EMPLOYERS VERIFICATION
return postAuxEnd('/employers/verify', {employer_uid:uid})
return postAuxEnd('/employers/verify', {application_uid:uid})
};
const getUserById = (id: ID): Promise<User | undefined> => {