1
0
Fork 0
mirror of https://github.com/mmumshad/ansible-playable.git synced 2025-02-15 04:42:05 +00:00
ansible-playable/server/api/custom_module/custom_module.model.js
Mumshad Mannambeth c92f737237 Initial Commit
2017-06-07 13:36:45 -04:00

13 lines
309 B
JavaScript

'use strict';
import mongoose from 'mongoose';
import {registerEvents} from './custom_module.events';
var CustomModuleSchema = new mongoose.Schema({
name: String,
info: String,
active: Boolean
});
registerEvents(CustomModuleSchema);
export default mongoose.model('CustomModule', CustomModuleSchema);