diff --git a/src/content/docs/extensions-and-development/javascript.mdoc b/src/content/docs/extensions-and-development/javascript.mdoc index 3bda7a8..6cdb813 100644 --- a/src/content/docs/extensions-and-development/javascript.mdoc +++ b/src/content/docs/extensions-and-development/javascript.mdoc @@ -67,14 +67,14 @@ API.{role}.{method}(endpoint, params, onSuccess, onError, showSpinner) ## Examples -### Get System Version (Guest) +### Get Currency Pairs (Guest) ```javascript API.guest.get( - "system/version", + "currency/get_pairs", {}, function(response) { - console.log("Version:", response); + console.log("Currency pairs:", response); }, function(error) { console.error("Error:", error); diff --git a/src/content/docs/maintenance/changelog.mdoc b/src/content/docs/maintenance/changelog.mdoc index 6bbcbfc..ae99013 100644 --- a/src/content/docs/maintenance/changelog.mdoc +++ b/src/content/docs/maintenance/changelog.mdoc @@ -35,7 +35,7 @@ For the latest changes, start with the [most recent release](https://github.com/ | **Patcher** | Extended through patch 64 (was 43) | | **Uploads & Public Assets** | Uploads moved from `/uploads` to `/data/uploads`; gateway and default branding assets moved to `/public` | -[View the full 0.8.0 release notes](https://github.com/FOSSBilling/FOSSBilling/releases/latest) for the complete list of changes. +[View the full 0.8.0 release notes](https://github.com/FOSSBilling/FOSSBilling/releases/tag/0.8.0) for the complete list of changes. ## Breaking Changes