Files
bridge/internal/metal/models/idprefix.go
2023-07-17 17:17:04 +00:00

16 lines
409 B
Go

package models
const (
// IDPrefixOrganization defines the ID Prefix for an Organization.
IDPrefixOrganization = "metlorg"
// IDPrefixProject defines the ID Prefix for a Project.
IDPrefixProject = "metlprj"
// IDPrefixUser defines the ID Prefix for a User.
IDPrefixUser = "metlusr"
// IdentityPrefixUser defines the ID Prefix for a User created with Identity API.
IdentityPrefixUser = "idntusr"
)