mirror of
https://github.com/fergalmoran/dss.git
synced 2026-01-06 00:44:16 +00:00
20 lines
451 B
JavaScript
20 lines
451 B
JavaScript
/** @license
|
|
|
|
----------------------------------------------
|
|
|
|
Copyright (c) 2012, Fergal Moran. All rights reserved.
|
|
Code provided under the BSD License:
|
|
|
|
*/
|
|
window.Mix = DSSModel.extend({
|
|
urlRoot:com.podnoms.settings.urlRoot + "mix/",
|
|
schema:{
|
|
title:'Text',
|
|
description:'Text'
|
|
}
|
|
});
|
|
window.MixCollection = TastypieCollection.extend({
|
|
url:com.podnoms.settings.urlRoot + "mix/",
|
|
model:Mix
|
|
});
|