(isRefresh = false)
| 25 | } |
| 26 | |
| 27 | export async function getApplicantIDByDisplayName(isRefresh = false) { |
| 28 | /* |
| 29 | * Get the list of applicantIDs from the server or local storage by displayName |
| 30 | * @return: list of applicants |
| 31 | */ |
| 32 | const displayName = await getDisplayName(isRefresh); |
| 33 | const metadata = await getMetadata(displayName, isRefresh); |
| 34 | return metadata.ApplicantIDs; |
| 35 | } |
| 36 | |
| 37 | export async function setApplicantIDByDisplayName(applicants) { |
| 38 | /* |
no test coverage detected