You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
294 B
17 lines
294 B
package model
|
|
|
|
// Role constants
|
|
const (
|
|
RoleSuperAdmin = "super_admin"
|
|
RoleAdmin = "admin"
|
|
RoleUser = "user"
|
|
RoleGuest = "guest"
|
|
)
|
|
|
|
// Source constants
|
|
const (
|
|
SourceSystem = "system"
|
|
SourceRegister = "register"
|
|
SourceCasdoor = "casdoor"
|
|
SourceManual = "manual"
|
|
)
|
|
|