UNPKG

waw-dev

Version:

[waw](https://webart.work) is the open-source web, mobile and desktop app development framework that makes it easy to build top quality web apps with web technologies.

13 lines (10 loc) 274 B
var mongoose = require('mongoose'); var Schema = mongoose.Schema({ name: String, category: String }); Schema.methods.create = function(obj, user, sd) { this.name = obj.name; this.category = obj.category } module.exports = mongoose.model('Unique', Schema);