mirror of
https://github.com/cnodejs/nodeclub.git
synced 2026-01-25 15:23:45 +00:00
15 lines
371 B
JavaScript
15 lines
371 B
JavaScript
/**
|
|
* 给所有的 Model 扩展功能
|
|
* http://mongoosejs.com/docs/plugins.html
|
|
*/
|
|
var tools = require('../common/tools');
|
|
|
|
module.exports = function(schema) {
|
|
schema.methods.create_at_ago = function() {
|
|
return tools.formatDate(this.create_at, true);
|
|
}
|
|
|
|
schema.methods.updated_at_ago = function() {
|
|
return tools.formatDate(this.create_at, true);
|
|
};
|
|
} |