mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
89ef1681e8
[web] Submit group plan change on subscription dash GitOrigin-RevId: 5bc2644351c80189774ad3ac4cdcd622d354770f
7 lines
145 B
TypeScript
7 lines
145 B
TypeScript
export function getRecurlyGroupPlanCode(
|
|
planCode: string,
|
|
size: string,
|
|
usage: string
|
|
) {
|
|
return `group_${planCode}_${size}_${usage}`
|
|
}
|