Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/content/docs/extensions-and-development/javascript.mdoc
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/maintenance/changelog.mdoc
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading