Skip to content

Commit

Permalink
API endpoint should point at root resource
Browse files Browse the repository at this point in the history
  • Loading branch information
jrnewton committed Mar 8, 2021
1 parent 68cbbbd commit 502076b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ export default {
}
try {
const url = `${apiEndpoint}?accessToken=${this.sessionData.accessToken}`;
const url = `${apiEndpoint}/archive?accessToken=${this.sessionData.accessToken}`;
this.progress = 'Sending request for ' + this.formURL;
console.log('archive GET', url);
Expand Down
2 changes: 1 addition & 1 deletion src/awsconfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ export default {
};

export let apiEndpoint =
'https://9rxe670nh8.execute-api.us-east-2.amazonaws.com/dev/archive';
'https://9rxe670nh8.execute-api.us-east-2.amazonaws.com/dev';

0 comments on commit 502076b

Please sign in to comment.