Added the plans.ts file to view all limits

This commit is contained in:
Mathias Wagner 2023-01-22 18:00:06 +01:00
parent d668b26b51
commit f29245a302
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

26
src/limits/plans.ts Normal file
View File

@ -0,0 +1,26 @@
export const planLimits = {
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
}
}