Skip to content

Commit

Permalink
https://github.com/Tracardi/tracardi/issues/240
Browse files Browse the repository at this point in the history
  • Loading branch information
atompie committed Dec 3, 2021
1 parent b38f5c1 commit cab0c53
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tracardi/domain/user.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from typing import List
from pydantic import BaseModel


class User(BaseModel):
username: str
password: str
full_name: str
email: str
roles: List[str]
disabled: bool = False

0 comments on commit cab0c53

Please sign in to comment.