mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-30 10:56:53 -05:00
12 lines
196 B
CoffeeScript
12 lines
196 B
CoffeeScript
|
Prepaids = require 'collections/Prepaids';
|
||
|
|
||
|
module.exports = new Prepaids([
|
||
|
{
|
||
|
_id: 'unused-prepaid'
|
||
|
creator: 'teacher1'
|
||
|
exhausted: false
|
||
|
maxRedeemers: 2
|
||
|
redeemers: []
|
||
|
}
|
||
|
])
|