Files
dss/static/js/app/models/user.js
2012-10-24 16:13:18 +01:00

18 lines
343 B
JavaScript

/** @license
----------------------------------------------
Copyright (c) 2012, Fergal Moran. All rights reserved.
Code provided under the BSD License:
*/
var User = DSSModel.extend({
urlRoot:com.podnoms.settings.urlRoot + "user/",
isValid:function () {
this.errors = {};
return "";
}
});