- browsing by subcategory

This commit is contained in:
Edin Dazdarevic
2015-03-29 23:23:21 +02:00
parent 8e3557cf2e
commit 7c1eb2f4fd
12 changed files with 349 additions and 10 deletions

View File

@@ -0,0 +1,13 @@
var Backbone = require('backbone');
var Globals = require('../globals');
var SubCategory = Backbone.Model.extend({
urlRoot : Globals.ApiUrl + '/subcategory',
defaults : {
name: '',
filter_criterias: []
}
});
module.exports = SubCategory;