Create a settings app to manage user objects

This commit is contained in:
yflory
2017-02-14 19:04:57 +01:00
parent 71b84afdb2
commit cd9cea8fa4
11 changed files with 71 additions and 23 deletions

View File

@@ -113,6 +113,14 @@ define([
return storeObj.login_name;
};
ret.repairDrive = function () {
filesOp.fixFiles();
};
ret.getEmptyObject = function () {
return filesOp.getStructure();
};
var changeHandlers = ret.changeHandlers = [];
ret.change = function (f) {};