Skip to content

Commit

Permalink
Merge pull request #112 from pablohashescobar/feat/user_role
Browse files Browse the repository at this point in the history
feat: user role in model
  • Loading branch information
vamsi authored Jan 6, 2023
2 parents ef4be39 + ad58a07 commit b3c4613
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions apiserver/plane/db/models/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ class User(AbstractBaseUser, PermissionsMixin):
token_updated_at = models.DateTimeField(null=True)
last_workspace_id = models.UUIDField(null=True)
my_issues_prop = models.JSONField(null=True)
role = models.CharField(max_length=300, null=True, blank=True)

USERNAME_FIELD = "email"

Expand Down

0 comments on commit b3c4613

Please sign in to comment.