Created
February 28, 2020 01:46
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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