codecombat/app/collections/Products.coffee
2015-12-14 11:10:50 -08:00

8 lines
No EOL
225 B
CoffeeScript

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