Skip to content

DesignmanIO/meteor-autoform-ufs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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'
        }
    }
});