view now gets item with details

This commit is contained in:
Senad Uka
2015-01-24 09:44:43 +01:00
parent f5eca4a758
commit 64fb9a4ee5
8 changed files with 53 additions and 9 deletions

View File

@@ -0,0 +1,9 @@
var Backbone = require('backbone');
var Globals = require('../globals');
var ItemWithDetails = Backbone.Model.extend({
urlRoot : Globals.ApiUrl + '/item'
});
module.exports = ItemWithDetails;