You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
451 B
18 lines
451 B
const mongoose = require('mongoose');
|
|
const Schema = mongoose.Schema;
|
|
|
|
let feed =
|
|
new Schema(
|
|
{
|
|
ChannelId: {type:String, required: true},
|
|
YTChannelId: {type:String, required: true},
|
|
CostumMessage:{type:String, required:false},
|
|
gID:{type:String, required:false},
|
|
}
|
|
);
|
|
|
|
const Feed = module.exports = mongoose.model('feed', feed);
|
|
module.exports.get = (callback, limit)=>
|
|
{
|
|
Feed.find(callback).limit(limit);
|
|
} |