mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
7 lines
188 B
CoffeeScript
7 lines
188 B
CoffeeScript
Payment = require 'models/Payment'
|
|
CocoCollection = require 'collections/CocoCollection'
|
|
|
|
module.exports = class Payments extends CocoCollection
|
|
model: Payment
|
|
url: '/db/payment'
|
|
|