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