chore: update shortcut form fields

This commit is contained in:
Steven
2023-11-19 23:57:09 +08:00
parent 5f94f3f893
commit d18872aa5f
3 changed files with 45 additions and 50 deletions

View File

@ -3,10 +3,12 @@ package license
type FeatureType string
const (
// Accounts.
// Usages.
// FeatureTypeUnlimitedAccounts allows the user to create unlimited accounts.
FeatureTypeUnlimitedAccounts FeatureType = "unlimited_accounts"
// FeatureTypeUnlimitedAccounts allows the user to create unlimited collections.
FeatureTypeUnlimitedCollections FeatureType = "unlimited_collections"
// Customization.
@ -16,6 +18,7 @@ const (
// FeatureMatrix is a matrix of features in [Free, Pro].
var FeatureMatrix = map[FeatureType][2]bool{
FeatureTypeUnlimitedAccounts: {false, true},
FeatureTypeCustomeStyle: {false, true},
FeatureTypeUnlimitedAccounts: {false, true},
FeatureTypeUnlimitedCollections: {false, true},
FeatureTypeCustomeStyle: {false, true},
}