16 lines
409 B
Go
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"
|
|
)
|