refactor(editor): Update endpoint to retrieve limits (no-changelog) (#6539)

update endpoint to retrieve limits
This commit is contained in:
Ricardo Espinoza 2023-06-26 22:08:17 -04:00 committed by GitHub
parent e1a02c7625
commit e43924da36
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,5 +9,5 @@ export async function getCurrentPlan(
}
export async function getCurrentUsage(context: IRestApiContext): Promise<InstanceUsage> {
return get(context.baseUrl, '/limits');
return get(context.baseUrl, '/cloud/limits');
}