mirror of
https://github.com/gnmyt/LicenseAPI.git
synced 2026-01-11 10:41:46 +00:00
Create plan limits
This commit is contained in:
29
src/limits/plans.ts
Normal file
29
src/limits/plans.ts
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
export const planLimits = {
|
||||||
|
account: {
|
||||||
|
FREE_PROJECTS: 5,
|
||||||
|
},
|
||||||
|
personal: {
|
||||||
|
LICENSES: 100,
|
||||||
|
MEMBERS: 1,
|
||||||
|
GROUPS: 3,
|
||||||
|
KEYS: 1,
|
||||||
|
META: 3,
|
||||||
|
PERMISSIONS: 10
|
||||||
|
},
|
||||||
|
plus: {
|
||||||
|
LICENSES: 5000,
|
||||||
|
MEMBERS: 10,
|
||||||
|
GROUPS: 15,
|
||||||
|
KEYS: 10,
|
||||||
|
META: 10,
|
||||||
|
PERMISSIONS: 50
|
||||||
|
},
|
||||||
|
pro: {
|
||||||
|
LICENSES: 50000,
|
||||||
|
MEMBERS: 20,
|
||||||
|
GROUPS: 40,
|
||||||
|
KEYS: 20,
|
||||||
|
META: 20,
|
||||||
|
PERMISSIONS: 100
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user