webmaker-events/models/gallery_image.js

8 строки
215 B
JavaScript

module.exports = function (Model, Types) {
Model('GalleryImage', {
uri: Types.URL,
}, function (M) {
this.belongsTo( M.Gallery, { as: 'Gallery' } );
});
};