Skip to content

Instantly share code, notes, and snippets.

@fideliocc
Created February 28, 2020 01:46
Show Gist options
  • Save fideliocc/0bce37ab19d259e8006ad54583421536 to your computer and use it in GitHub Desktop.
Save fideliocc/0bce37ab19d259e8006ad54583421536 to your computer and use it in GitHub Desktop.
Angular service to perform GET request and returns an observable with QuickSight Dashboard URL
getDashboardUrl(email) {
const url = environment.GET_DASHBOARD_URL + `?email=${email}`;
return this.http.get(url);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment