mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-03 20:20:37 +08:00

* feat: added license manager and feature flags * feat: completed org domain api * chore: checking in saml auth handler code * feat: added signup with sso * feat: added login support for admins * feat: added pem support for certificate * ci(build-workflow): 👷 include EE query-service * fix: 🐛 update package name * chore(ee): 🔧 LD_FLAGS related changes Signed-off-by: Prashant Shahi <prashant@signoz.io> Co-authored-by: Prashant Shahi <prashant@signoz.io> Co-authored-by: nityanandagohain <nityanandagohain@gmail.com>
28 lines
484 B
Go
28 lines
484 B
Go
package model
|
|
|
|
import (
|
|
basemodel "go.signoz.io/signoz/pkg/query-service/model"
|
|
)
|
|
|
|
const SSO = "SSO"
|
|
const Basic = "BASIC_PLAN"
|
|
const Pro = "PRO_PLAN"
|
|
const Enterprise = "ENTERPRISE_PLAN"
|
|
const DisableUpsell = "DISABLE_UPSELL"
|
|
|
|
var BasicPlan = basemodel.FeatureSet{
|
|
Basic: true,
|
|
SSO: false,
|
|
DisableUpsell: false,
|
|
}
|
|
|
|
var ProPlan = basemodel.FeatureSet{
|
|
Pro: true,
|
|
SSO: true,
|
|
}
|
|
|
|
var EnterprisePlan = basemodel.FeatureSet{
|
|
Enterprise: true,
|
|
SSO: true,
|
|
}
|