Example #1
0
 def __init__(self, db, connection_model):
     SQLAlchemyDatastore.__init__(self, db)
     ConnectionDatastore.__init__(self, connection_model)
Example #2
0
 def __init__(self, db, user_model, role_model):
     SQLAlchemyDatastore.__init__(self, db)
     UserDatastore.__init__(self, user_model, role_model)
Example #3
0
 def __init__(self, db, content_model, category_model):
     self.content_model = content_model
     self.category_model = category_model
     SQLAlchemyDatastore.__init__(self, db)
Example #4
0
 def __init__(self, db, connection_model):
     SQLAlchemyDatastore.__init__(self, db)
     ConnectionDatastore.__init__(self, connection_model)
Example #5
0
 def __init__(self):
     SQLAlchemyDatastore.__init__(self, db)
     UserDatastore.__init__(self, User, None)
Example #6
0
 def __init__(self):
     SQLAlchemyDatastore.__init__(self, db)
     UserDatastore.__init__(self, User, None)