This repository has been archived on 2025-05-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
codecombat/server/mail/tasks/MailTask.coffee

8 lines
265 B
CoffeeScript
Raw Normal View History

mongoose = require 'mongoose'
plugins = require '../../plugins/plugins'
jsonschema = require '../../../app/schemas/models/mail_task'
MailTaskSchema = new mongoose.Schema({}, {strict: false})
module.exports = MailTask = mongoose.model('mail.task', MailTaskSchema)