Skip to content

Commit

Permalink
fix const.
Browse files Browse the repository at this point in the history
  • Loading branch information
lingdie committed Aug 21, 2023
1 parent 18c4922 commit 95e6e5a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions controllers/user/api/v1/user_types.go
Expand Up @@ -39,9 +39,9 @@ type UserSpec struct {
type RoleType string

const (
OwnerRoleType RoleType = "owner"
ManagerRoleType RoleType = "manager"
DeveloperRoleType RoleType = "developer"
OwnerRoleType RoleType = "Owner"
ManagerRoleType RoleType = "Manager"
DeveloperRoleType RoleType = "Developer"
)

type UserPhase string
Expand Down

0 comments on commit 95e6e5a

Please sign in to comment.