diff options
author | 0neGal <mail@0negal.com> | 2022-01-19 23:48:14 +0100 |
---|---|---|
committer | 0neGal <mail@0negal.com> | 2022-01-19 23:48:14 +0100 |
commit | cc2fcbbdba49149724de7a07415d0dee23cc57d1 (patch) | |
tree | bdb657e0ed27fc63c028ecd4572d3bd40482e490 /src/requests.js | |
parent | 45b4c015a14da3a2860a87e7b704a89110943def (diff) | |
download | Viper-cc2fcbbdba49149724de7a07415d0dee23cc57d1.tar.gz Viper-cc2fcbbdba49149724de7a07415d0dee23cc57d1.zip |
documented the rest of the files
Diffstat (limited to 'src/requests.js')
-rw-r--r-- | src/requests.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/requests.js b/src/requests.js index 5452b0d..16b1330 100644 --- a/src/requests.js +++ b/src/requests.js @@ -71,6 +71,7 @@ function getLatestNsVersionLink() { return cache[NORTHSTAR_LATEST_RELEASE_KEY]["body"].assets[0].browser_download_url; } +// Returns and caches the Northstar release notes async function getNsReleaseNotes() { return new Promise(resolve => { let cache = _getRequestsCache(); @@ -107,6 +108,7 @@ async function getNsReleaseNotes() { }); } +// Returns and caches the Viper release notes async function getVpReleaseNotes() { return new Promise(resolve => { let cache = _getRequestsCache(); |