codecombat/app/views/account/PaymentsView.coffee

18 lines
548 B
CoffeeScript
Raw Normal View History

RootView = require 'views/core/RootView'
2014-11-25 14:09:29 -05:00
template = require 'templates/account/payments-view'
CocoCollection = require 'collections/CocoCollection'
Payment = require 'models/Payment'
module.exports = class PaymentsView extends RootView
id: "payments-view"
template: template
constructor: (options) ->
super(options)
@payments = new CocoCollection([], { url: '/db/payment', model: Payment, comparator:'_id' })
2014-11-25 14:09:29 -05:00
@supermodel.loadCollection(@payments, 'payments')
getRenderData: ->
c = super()
c.payments = @payments
c