Package coprs :: Module models :: Class Krb5Login
[hide private]
[frames] | no frames]

Class Krb5Login

source code


Represents additional user information for kerberos authentication.

Instance Methods [hide private]

Inherited from helpers.Serializer: serializable_attributes, to_dict

Class Variables [hide private]
  __tablename__ = "krb5_login"
  user_id = db.Column(db.Integer, db.ForeignKey("user.id"), null...
  config_name = db.Column(db.String(30), nullable= False, primar...
  primary = db.Column(db.String(80), nullable= False, primary_ke...
  user = db.relationship("User", backref= db.backref("krb5_login...
Class Variable Details [hide private]

user_id

Value:
db.Column(db.Integer, db.ForeignKey("user.id"), nullable= False)

config_name

Value:
db.Column(db.String(30), nullable= False, primary_key= True)

primary

Value:
db.Column(db.String(80), nullable= False, primary_key= True)

user

Value:
db.relationship("User", backref= db.backref("krb5_logins"))