mirror of
https://github.com/fergalmoran/dss.git
synced 2026-01-03 07:24:00 +00:00
18 lines
343 B
JavaScript
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 "";
|
|
}
|
|
|
|
});
|