codecombat/app/collections/Products.coffee

8 lines
225 B
CoffeeScript
Raw Normal View History

2015-12-14 14:10:37 -05:00
CocoCollection = require './CocoCollection'
Product = require 'models/Product'
module.exports = class Products extends CocoCollection
model: Product
url: '/db/products'
getByName: (name) -> @findWhere { name: name }