Bases: sqlalchemy.ext.declarative.Base
Manages users
The user class is the representation of the users in the system.
Because there is no central database in the current implementation of oyProjectManager, a user is stored in the Project‘s database only if the user has created some data. So creating a user and querying the Projects that this user has worked has no direct way.
Parameters: |
|
---|
Methods
__init__(name[, initials, email, active]) | |
query() | |
save() | saves this User instance to the database |
Attributes
active | |
id | |
initials | |
metadata | A collection of Table objects and their associated schema constructs. |
name | |
versions_created |