Autoform for UFS
Install like so: meteor add buishi:autoform-ufs
Use like so:
Schemas.Collection = new SimpleSchema({
images: {
type: [String],
optional: true,
autoform: {
type: 'ufs',
collection: 'images',
store: 'ImageStore',
publication: 'images',
thumbnails: 'thumbnails'
}
}
});