mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
10 lines
No EOL
250 B
CoffeeScript
10 lines
No EOL
250 B
CoffeeScript
Campaign = require('./Campaign')
|
|
Handler = require('../commons/Handler')
|
|
|
|
CampaignHandler = class CampaignHandler extends Handler
|
|
modelClass: Campaign
|
|
editableProperties: ['name', 'description', 'levels']
|
|
|
|
|
|
|
|
module.exports = new CampaignHandler() |