Andrew Sosa

Results 5 comments of Andrew Sosa

@btmurrell I noticed you do `let contentTypeHeader = req.headers['content-type'];`, but then don't pass it into the `proxy()` call. Did you mean to use it?

@johnmpotter if you are looking for someone to take over as maintainer for this site please let me know

Hello! Is this fix included in release v0.11.0? I'm still having this issue on the latest release, also with flask-mongoengine 0.9.2. Thanks! I'm using a ListField of ReferenceFields.

@wojcikstefan Here's a sample script I wrote to demonstrate: ``` from app import db # Import MongoEngine instance from Flask app instance. class Doc(db.Document): refs = db.ListField(db.ReferenceField('Doc')) # Create some...

@wojcikstefan I think it actually makes more sense to have empty lists automatically removed (what is currently happening). You made good points in your argument for that behavior. It would...