CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/next/pages/api/v2/purchases/get-quotas.ts
Views: 687
1
/*
2
Let user get all of their purchase quotas.
3
*/
4
5
import getAccountId from "lib/account/get-account";
6
import { getPurchaseQuotas, PurchaseQuotas } from "@cocalc/server/purchases/purchase-quotas";
7
8
export default async function handle(req, res) {
9
try {
10
res.json(await get(req));
11
} catch (err) {
12
res.json({ error: `${err.message}` });
13
return;
14
}
15
}
16
17
async function get(req) : Promise<PurchaseQuotas> {
18
const account_id = await getAccountId(req);
19
if (account_id == null) {
20
throw Error("must be signed in");
21
}
22
return await getPurchaseQuotas(account_id);
23
}
24
25