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

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');
}