diff options
author | 0neGal <mail@0negal.com> | 2022-01-19 23:48:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-19 23:48:17 +0100 |
commit | ae7de46f4748c800097f0f3c700e6525d7d7cc4f (patch) | |
tree | 5c66168894e5ad3b26e0330d24d62e1a985bea7c /src/requests.js | |
parent | 2ed4338b9608211c07c4dd620e7f3b073131388a (diff) | |
parent | cc2fcbbdba49149724de7a07415d0dee23cc57d1 (diff) | |
download | Viper-ae7de46f4748c800097f0f3c700e6525d7d7cc4f.tar.gz Viper-ae7de46f4748c800097f0f3c700e6525d7d7cc4f.zip |
Merge pull request #46 from 0neGal/documentation
Adding documentation/comments
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(); |