Skip to content

Commit

Permalink
[candidate_profile] Update API version used by candidate_profile to b…
Browse files Browse the repository at this point in the history
…e v0.0.3 (#7150)

v0.0.2 support was removed in #6944.

The CHANGELOG was also referencing the wrong pull request.
  • Loading branch information
driusan authored Dec 3, 2020
1 parent a29242f commit 6cd139c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ requesting a new account and will be displayed in the User Accounts module (PR #
- Readability of comments and history was improved. (PR #6138)
#### API
- Creation of a new version of the API under development (v0.0.4-dev) (PR #6944)
- Deletion of support for the oldest version of the API (v0.0.2) (PR #6844)
- Deletion of support for the oldest version of the API (v0.0.2) (PR #6944)
#### Candidate Parameters
- Consents may now be grouped in UI of consent tab (PR #6042, PR #6044)
### Clean Up
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
window.addEventListener('load', () => {
let candidate = null;
async function loadCandidate() {
let response = await fetch(loris.BaseURL + '/api/v0.0.2/candidates/{$candidate->getCandID()}');
let response = await fetch(loris.BaseURL + '/api/v0.0.3/candidates/{$candidate->getCandID()}');
let data = await response.json();
candidate = data;
return data;
Expand Down

0 comments on commit 6cd139c

Please sign in to comment.