mirror of
				https://github.com/mmumshad/ansible-playable.git
				synced 2025-03-09 23:38:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			309 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			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);
 |