mirror of
https://github.com/fosrl/pangolin.git
synced 2026-05-03 16:22:03 +00:00
b8822b4d25
Fixes #2968
10 lines
246 B
TypeScript
10 lines
246 B
TypeScript
export async function getOrgTierData(
|
|
orgId: string
|
|
): Promise<{ tier: string | null; active: boolean; isTrial: boolean }> {
|
|
const tier = null;
|
|
const active = false;
|
|
const isTrial = false;
|
|
|
|
return { tier, active, isTrial };
|
|
}
|