Python flask_security.UserMixin() Examples
The following are 1
code examples of flask_security.UserMixin().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
flask_security
, or try the search function
.
Example #1
Source File: authentication.py From FACT_core with GNU General Public License v3.0 | 6 votes |
def create_user_interface(db): roles_users = db.Table('roles_users', db.Column('user_id', db.Integer(), db.ForeignKey('user.id')), db.Column('role_id', db.Integer(), db.ForeignKey('role.id'))) class Role(db.Model, RoleMixin): id = db.Column(db.Integer(), primary_key=True) # pylint: disable=invalid-name name = db.Column(db.String(80), unique=True) description = db.Column(db.String(255)) class User(db.Model, UserMixin): id = db.Column(db.Integer, primary_key=True) # pylint: disable=invalid-name api_key = db.Column(db.String(255), default=_build_api_key, unique=True) email = db.Column(db.String(255), unique=True) password = db.Column(db.String(255)) active = db.Column(db.Boolean()) confirmed_at = db.Column(db.DateTime()) roles = db.relationship('Role', secondary=roles_users, backref=db.backref('users', lazy='dynamic')) return UserRoleDbInterface(db, User, Role)